import { ReactNode } from 'react'; import { ActionSheetItemProps } from './components/ActionSheetItem'; export declare type ActionSheetChildrenProps = { children: ReactNode; }; export declare type ActionSheetOptionsProps = { options: (ActionSheetItemProps & { id?: string; })[]; }; export declare type ActionSheetProps = { isTitleHidden?: boolean; onClose: () => void; title: string; } & (ActionSheetChildrenProps | ActionSheetOptionsProps); export declare const ActionSheet: ({ isTitleHidden, onClose, title, ...restOfProps }: ActionSheetProps) => JSX.Element;