import React from 'react'; declare type OverlayProps = { closeOnBlur: () => void; shouldDisplay: boolean; children: React.ReactNode; className: string; }; export declare const Overlay: ({ closeOnBlur, shouldDisplay, children, className }: OverlayProps) => JSX.Element; export {};