import type { JSX } from 'solid-js'; import type { DisclosureStateRenderProps } from '../../states/create-disclosure-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; export type ContextMenuOverlayProps = HeadlessPropsWithRef; /** * The backdrop behind a `ContextMenu`. Clicking it closes the menu, 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/context-menu.md} */ export declare function ContextMenuOverlay(props: ContextMenuOverlayProps): JSX.Element; //# sourceMappingURL=ContextMenuOverlay.d.ts.map