import type { WithElementRef } from "bits-ui"; import type { Snippet } from "svelte"; import type { HTMLAttributes } from "svelte/elements"; type $$ComponentProps = WithElementRef> & { child?: Snippet<[{ props: Record; }]>; }; declare const SidebarGroupLabel: import("svelte").Component<$$ComponentProps, {}, "ref">; type SidebarGroupLabel = ReturnType; export default SidebarGroupLabel;