import React, { FC } from "react"; import { BoxProps } from "../Box"; interface OverlayProps extends BoxProps { isUnmounting?: boolean; } export declare const Overlay: FC>; export default Overlay;