import { ActionSheetOptionProps, ActionSheetProps } from './action-sheet';
export interface ActionSheetWrapperProps extends Omit<ActionSheetProps, 'visible'> {
    message?: string;
    options: ActionSheetOptionProps[] | string[];
    onClick?: (option?: string | ActionSheetOptionProps, index?: number, e?: any) => void;
    onClose?: (reason?: string) => void;
}
export default function (options: ActionSheetWrapperProps): {
    close: () => any;
};
