import * as React from 'react'; export type OverlayProps = { children?: React.ReactNode; className?: string; fixed?: boolean; }; declare const Overlay: React.FC; export { Overlay };