import * as React from 'react'; export type OverlayProps = React.HTMLAttributes & { fixed?: boolean; ref?: React.Ref; }; declare const Overlay: React.FC; export { Overlay };