artwork-react-native
Version:
artwork design master for react-native
17 lines (16 loc) • 524 B
TypeScript
/// <reference types="react" />
import React from 'react';
import { IActionSheetStyle } from './style';
export interface IActionSheetNativeProps {
onAnimationEnd?: (visible: boolean) => void;
visible?: boolean;
config?: any;
callback?: (index: number) => void;
styles?: IActionSheetStyle;
}
declare class ActionSheetAndroid extends React.Component<IActionSheetNativeProps, any> {
constructor(props: any);
confirm(index: any): void;
render(): JSX.Element;
}
export default ActionSheetAndroid;