import { ReactNode } from 'react'; export interface ModalBodyProps { /** * Body content. */ children: ReactNode; /** * Disable the body's internal scroll. Use when the modal is wrapped in * `` and overflow is handled by the page. * @default false */ noScroll?: boolean; /** * Additional class name. */ className?: string; } export declare const ModalBody: { ({ children, noScroll, className }: ModalBodyProps): JSX.Element; displayName: string; }; export default ModalBody;