/// import { IIconButton } from '../icon-button'; interface IProps extends IIconButton { confirmTitle: string; onConfirm: () => void; onCancel?: () => void; } declare const ConfirmButton: ({ confirmTitle, onConfirm, onCancel, ...rest }: IProps) => JSX.Element; export default ConfirmButton;