import { PropsWithChildren, ReactNode } from 'react'; import { Props } from 'react-modal'; import { C as ClassName, T as TComponentIcon } from './types-73ca6ab5.js'; interface ModalProps extends PropsWithChildren, ClassName, Omit { isOpen: boolean; closeModal(): void; variant?: "shadow" | "outline"; size?: "sm" | "lg"; align?: "left" | "center"; modalHeader?: ReactNode; closeIcon?: TComponentIcon; overlayBackgroundColor?: string; overlayClassName?: string; imgSrc?: string; } export { ModalProps as M };