import { FC, PropsWithChildren } from 'react'; export interface ModalProps { show?: boolean; width?: number | string; height?: number | string; maxWidth?: number | string; showCloseIcon?: boolean; closeOnClickOutside?: boolean; colorCloseIcon?: string; onClosed?(): void; variantClose?: 'inner' | 'outer'; } export declare const Modal: FC>;