import { ActionSheetItemProps, ActionSheetProps } from './ActionSheet'; export interface ActionSheetOptions extends ActionSheetProps { id?: string; } export declare const show: (options: ActionSheetOptions) => Promise<{ index: number; item: string | ActionSheetItemProps; }>; export declare const hide: (id?: string) => void; export declare const hideAll: () => void;