import type { FC, HTMLAttributes } from 'react';
export interface ModalBodyProps extends HTMLAttributes<HTMLDivElement> {
}
declare const ModalBody: FC<ModalBodyProps>;
export default ModalBody;
