import * as qrCode from '@zag-js/qr-code';
export interface CreateQrCodeProps extends Omit<qrCode.Props, 'dir' | 'getRootNode'> {
}
export interface CreateQrCodeReturn extends qrCode.Api {
}
export declare function createQRCode(props: CreateQrCodeProps): CreateQrCodeReturn;
