import type { JSX } from 'solid-js'; import type { DisclosureStateRenderProps } from '../../states/create-disclosure-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type PopoverOverlayProps = HeadlessPropsWithRef; /** * The backdrop behind a `Popover`. Clicking it closes the popover, so give it * a size — it has no styles of its own. It is never unmounted, unlike the * panel, so hide it with CSS or a `` while closed, or it will swallow * clicks on the page. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/popover.md} */ export declare function PopoverOverlay(props: PopoverOverlayProps): JSX.Element; //# sourceMappingURL=PopoverOverlay.d.ts.map