import type { AsChildTypes } from "../types"; import { type PropsOf } from "@qwik.dev/core"; import { type AllowedFallbacks } from "../render/render"; type LabelProps = PropsOf<"label"> & { fallback?: AllowedFallbacks; }; export declare const Label: import("@qwik.dev/core").Component; export {};