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 PopoverPanelBaseProps = Prettify; export type PopoverPanelProps = HeadlessPropsWithRef; /** * The floating panel of a `Popover`. Position it yourself — the library sets * no coordinates. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/popover.md} */ export declare function PopoverPanel(props: PopoverPanelProps): JSX.Element; //# sourceMappingURL=PopoverPanel.d.ts.map