import { default as React, ReactNode, HTMLAttributes } from 'react'; export interface ModalBodyProps extends HTMLAttributes { /** * Children or function as a children */ children: ReactNode; } declare const ModalBody: ({ children, ...otherProps }: ModalBodyProps) => React.JSX.Element; export default ModalBody; //# sourceMappingURL=ModalBody.d.ts.map