import type * as React from 'react'; import "./Overlay.css"; export type OverlayBackground = 'base' | 'float'; export interface OverlayProps { className?: string; background?: OverlayBackground; visible?: boolean; children?: React.ReactNode; } export declare function Overlay({ className, background, visible, children }: OverlayProps): import("react/jsx-runtime").JSX.Element;