export interface IosAlertAction { label: string; style?: "default" | "cancel" | "destructive"; onClick: () => void; } export interface IosAlertConfig { title: string; message?: string; actions: IosAlertAction[]; } interface IOSAlertDialogProps { config: IosAlertConfig | null; onClose: () => void; } export declare function IOSAlertDialog({ config, onClose }: IOSAlertDialogProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=IOSAlertDialog.d.ts.map