import { FC } from 'react'; export interface OverlayProps { /** * Optional className for the overlay container. */ className?: string; } declare let Overlay: FC; export { Overlay };