UNPKG

ultra-design

Version:
14 lines (13 loc) 412 B
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;