import { FC } from 'react';
import { ModalProps } from './modal';
export interface ConfirmModalProps extends ModalProps {
}
declare const defaultProps: {
    keyboard: boolean;
    center: boolean;
    hideClose: boolean;
    width: string;
};
export declare type MergedConfirmModalrProps = typeof defaultProps & ConfirmModalProps;
declare const ConfirmModal: FC<ConfirmModalProps>;
export default ConfirmModal;
