interface PopoverContextData { ownerID: string; buttonID: string; panelID: string; hovering: boolean; anchor?: HTMLElement | null; } export declare const PopoverContext: import("solid-js").Context; /** * Reads the nearest `Popover`'s internal context, which holds the generated * ids for its button and panel. Throws when called outside a `Popover`. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/popover.md} */ export declare function usePopoverContext(componentName: string): PopoverContextData; export {}; //# sourceMappingURL=PopoverContext.d.ts.map