import React from 'react';
import { IOverlayStandAlone } from './types/overlay';
/**
 * @description
 * Overlay component is used to create a background overlay.
 * @param {React.PropsWithChildren<IOverlayStandAlone>} props
 * @returns {JSX.Element}
 * @constructor
 * @example
 * <Overlay />
 */
export declare const OverlayStandAlone: React.ForwardRefExoticComponent<IOverlayStandAlone & React.RefAttributes<HTMLDivElement>>;
