import type { FC } from 'react'; import type { QRCodeProps } from '../QRCode'; export declare type QRUrlProps = Omit & { /** * The specific site or feature using this QR code. */ content: string; /** * The greater context (usually app) for using this QR code. */ medium: string; /** * The target url for the QR code. */ url: string; }; /** * Encodes a URL into a QRCode. Requires a valid url along with content and * medium for tracking attribution. This component requires that the URL api * is available and will throw otherwise. */ export declare const QRUrl: FC; //# sourceMappingURL=index.d.ts.map