import { FC, ElementType, HTMLAttributes } from 'react';
declare const ModalContent: FC;
interface ModalContentProps extends HTMLAttributes {
/**
* as - specifies the html element the component should be rendered as
*/
as?: ElementType;
}
export { ModalContent };