import { CSSProperties } from 'react';
import { JSX } from 'react/jsx-runtime';
import { ReactNode } from 'react';

export declare const Overlay: (props: OverlayProps) => JSX.Element;

export declare interface OverlayProps {
    show: boolean;
    backdrop?: boolean;
    style?: CSSProperties;
    className?: string;
    children: ReactNode;
}

export { }
