import { type BaseActionSheetItem } from "./actionItem"; import { FC } from "react"; export interface ActionSheetContentProps { actionSheets: BaseActionSheetItem[]; value?: BaseActionSheetItem; onValueChange?: (value: any) => void; onClose?: () => void; } export declare const ActionSheetContent: FC; //# sourceMappingURL=actionSheetContent.d.ts.map