import type { FC, HTMLAttributes, Ref } from 'react'; import type { TestableProps } from '../../utils/testId'; type OverlayProps = Omit, 'className'> & TestableProps & { ref?: Ref; }; export declare const Overlay: FC; export {};