import * as React from "react"; import type { QrCodeProp } from "../../props/components/data-display.prop.js"; export type QrCodeProps = QrCodeProp & Omit, keyof QrCodeProp | "children" | "role" | "style" | "type">; /** * Renders a QR code entirely in-process. The encoded value is never sent to a network service, * written to an element attribute, or included in accessible text. */ export declare const QrCode: React.ForwardRefExoticComponent, "ref">, "children" | "role" | "style" | "type" | keyof QrCodeProp> & React.RefAttributes>;