import * as react from 'react';
import { HTMLAttributes } from 'react';

interface CustomModalBodyProps extends HTMLAttributes<HTMLDivElement> {
}
declare const CustomModalBody: react.ForwardRefExoticComponent<CustomModalBodyProps & react.RefAttributes<HTMLDivElement>>;

export { CustomModalBody, type CustomModalBodyProps };
