import { MouseEventHandler, ReactElement, ReactNode } from 'react'; export type ModalContentProps = { /** * The content of the Modal */ children: ReactNode; /** * className for the element */ className?: string; /** * Handler that is called when the Modal is closed. * If not provided, the Close button won't be displayed */ onClose?: MouseEventHandler; }; export declare const ModalContent: ({ children, className, onClose, ...rest }: ModalContentProps) => ReactElement | null; //# sourceMappingURL=ModalContent.d.ts.map