/**
 * Created by nghinv on Thu Jul 15 2021
 * Copyright (c) 2021 nghinv@lumi.biz
 */
import React from 'react';
interface OverlayProps {
    overlayOpacity?: number;
    children?: React.ReactNode;
    overlayColor?: string;
}
declare function Overlay(props: OverlayProps): JSX.Element;
declare const _default: React.MemoExoticComponent<typeof Overlay>;
export default _default;
