import type { AsChildTypes } from "../types"; import { type Signal } from "@qwik.dev/core"; export type TreeGroupContext = { currItemIndex: number; totalItems: Signal; }; export declare const treeGroupContextId: import("@qwik.dev/core").ContextId; type TreeRootContext = { rootRef: Signal; currentFocusEl: Signal; typeaheadSearch: Signal; typeaheadTimeout: Signal; }; export declare const TreeRootContextId: import("@qwik.dev/core").ContextId; export declare const TreeRoot: import("@qwik.dev/core").Component<{ align?: string | undefined; } & import("@qwik.dev/core").HTMLElementAttrs & import("@qwik.dev/core/internal").QwikAttributes & AsChildTypes>; export {};