import { FunctionComponent, HTMLProps, ReactNode } from 'react';
export interface ModalBoxProps extends HTMLProps {
children: ReactNode;
ariaLablledbyId: string;
ariaDescribedById: string;
}
declare const ModalBox: FunctionComponent;
export default ModalBox;