import { ModalProps } from "./index"; declare const ConfirmTuple: string[]; declare type ConfirmType = typeof ConfirmTuple[number]; export declare type ConfirmProps = ModalProps & { type?: ConfirmType; icon?: string; iconColor?: string; }; export declare const Confirm: ({ container, visible, title, width, style, bodyStyle, onCancel, cancelButtonProps, cancelText, okType, onOk, okButtonProps, okText, type, icon, iconColor, children, ...rest }: ConfirmProps) => JSX.Element | null; export default Confirm;