import type { JSX } from 'solid-js'; import type { DisclosureStateRenderProps } from '../../states/create-disclosure-state'; import type { UnmountableProps } from '../../utils/create-unmountable'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export type ContextMenuPanelBaseProps = Prettify; export type ContextMenuPanelProps = HeadlessPropsWithRef; /** * The floating panel of a `ContextMenu`. Traps `Tab` while open and closes on * Escape. Position it yourself — the library sets no coordinates. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/context-menu.md} */ export declare function ContextMenuPanel(props: ContextMenuPanelProps): JSX.Element; //# sourceMappingURL=ContextMenuPanel.d.ts.map