/// export interface ConfirmProps { title?: string; content?: React.ReactNode; footer?: React.ReactNode; onOk?: () => Promise; onCancel?: () => Promise; contentClassName?: string; maxWidth?: "xs" | "sm" | "lg" | "xl" | null | undefined; closeableSize?: number; okId?: string; cancelId?: string; } export declare const confirm: (props: ConfirmProps) => Promise; //# sourceMappingURL=confirm.d.ts.map