import { StyledComponentProps } from '@rax-ui/styles'; import { ActionSheetButtonProps, ActionSheetItemProps } from './action-sheet'; export interface ActionSheetCurrent { hide?: (e: any) => void; destroyed?: boolean; } export interface ActionSheetWrapperProps extends StyledComponentProps { title?: string; fullWidth?: boolean; content?: (h: any) => any; cancelButton?: string | ActionSheetButtonProps; buttons?: Array; items?: ActionSheetItemProps[][]; onUnmount?: () => void; callback?: (e: any) => void; maskCancelable?: boolean; current?: ActionSheetCurrent; } declare const _default: { current: {}; show(props: any, callback: any): (e: any) => void; hide(e: any): void; }; export default _default;