import { default as React } from 'react'; import { PropsWithChildren } from '../../types/react'; type OverlayRootProps = PropsWithChildren<{ className?: string; visible: boolean; onClick?: () => void; zIndex?: number; }>; declare const OverlayRoot: React.FC; export type { OverlayRootProps }; export { OverlayRoot }; //# sourceMappingURL=index.d.ts.map