import * as React from 'react'; export interface OverlayProps { visible?: boolean; removed?: boolean; onClick?: (event?: React.MouseEvent) => void; onMouseDown?: (event?: React.MouseEvent) => void; onMouseUp?: (event?: React.MouseEvent) => void; onTransitionEnd?: (visibleWhenStarted: boolean) => void; children?: any; rootCss?: string; contentCss?: string; } export declare function Overlay(props: OverlayProps): React.JSX.Element;