interface ModalProps { isOpen: boolean; onClose: () => void; heading: string; text?: string; children?: React.ReactNode; confirmText?: string; cancelText?: string; onConfirm?: () => void; onCancel?: () => void; showButtons?: boolean; className?: string; wide?: boolean; } export declare const Modal: import("react").ForwardRefExoticComponent>; export {}; //# sourceMappingURL=modal.d.ts.map