import type { FC, PropsWithChildren, ReactNode } from "react"; export interface BaseDialogProps { open: boolean; title: ReactNode; closable?: boolean; closeableSize?: number; onOk?: () => Promise; onCancel?: () => void; footer?: ReactNode; onOpenChange?(open: boolean): void; contentClassName?: string; maxWidth?: "xs" | "sm" | "lg" | "xl" | null | undefined; okId?: string; cancelId?: string; } export declare const SimpleDialog: FC>; //# sourceMappingURL=simpleDialog.d.ts.map