import { type Signal, type ClassList } from "@builder.io/qwik"; export type PopoverImplProps = { id: string; popover?: "manual" | "auto"; class?: ClassList; ref?: Signal; manual?: boolean; entryAnimation?: string; exitAnimation?: string; animation?: boolean; transition?: boolean; }; /** * * Portal Context in Qwik, akin to React's Portal, enables element teleportation. Rendering this component forces Qwik to parse the vDOM, enabling efficient context retrieval. * * * 1. Render on client -> don't need anything * * 2. SSR -> click -> force context the one time. * */ export declare const EnsuredContext: import("@builder.io/qwik").Component; export declare const PopoverImpl: import("@builder.io/qwik").Component;