import { ComponentProps, FC } from 'react'; import { ModalCardContent } from './ModalCardContent'; import { ModalCardFooter } from './ModalCardFooter'; import { ModalCardHeader } from './ModalCardHeader'; import { ModalCardIcon } from './ModalCardIcon'; import { ModalCardTitle } from './ModalCardTitle'; export type TModalCardStaticProps = { Title: typeof ModalCardTitle; Header: typeof ModalCardHeader; Content: typeof ModalCardContent; Footer: typeof ModalCardFooter; Icon: typeof ModalCardIcon; }; type TModalCardProps = ComponentProps<'div'> & { size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | 'full' | 'auto'; }; declare const ModalCard: FC & TModalCardStaticProps; export { ModalCard };