import { default as React, FunctionComponent, ReactNode } from 'react'; import { PopupProps } from '../popup/index'; export type ActionSheetOption = { [key: string]: T; }; export interface ActionSheetProps extends PopupProps { visible: boolean; description: ReactNode; options: ActionSheetOption[]; optionKey: ActionSheetOption; cancelText: ReactNode; onCancel: () => void; onSelect: (item: ActionSheetOption, index: number) => void; } export declare const ActionSheet: FunctionComponent & Omit, 'title' | 'onSelect'>>;