import { ForwardRefExoticComponent } from 'rax'; import { ActionSheetProps, ActionSheetItemProps, ActionSheetButtonProps } from './action-sheet'; import { ActionSheetCurrent, ActionSheetWrapperProps } from './funcs'; export interface ActionSheetComponent extends ForwardRefExoticComponent { current?: ActionSheetCurrent; show?: (props: ActionSheetWrapperProps, callback: (i: any) => void) => void; hide?: (e: any) => void; } declare const ExpanedActionSheet: ActionSheetComponent; export { ActionSheetProps, ActionSheetItemProps, ActionSheetButtonProps, }; export default ExpanedActionSheet;