import { type PropsOf } from "@qwik.dev/core"; type PublicRootProps = PropsOf<"div"> & { /** The text value to encode in the QR code */ value?: string; /** The error correction level of the QR code. L = Low, M = Medium, Q = Quartile, H = High */ level?: "L" | "M" | "Q" | "H"; }; /** Root component for the QR code that manages state and context */ export declare const QRCodeRoot: import("@qwik.dev/core").Component; export {};