import { ModalProps } from '../modal/interfaces.js';
export interface IWarningProps extends Partial<ModalProps> {
onCancel?: () => void;
onConfirm?: () => void;
button?: {
Element?: () => React.ReactNode;
};
warningTitle?: string;
warningDescription?: string;
}