import React from 'react'; interface IConfirm { title: string; message?: string; open: boolean; handleClose: () => void; handleAccept: () => void; declineTitle?: string; acceptTitle?: string; children?: React.ReactElement | null; } export declare const Confirm: (props: IConfirm) => React.JSX.Element; export {};