import { QrErrorCorrectionLevel, type QrErrorCorrectionLevelConfig } from "../encode/QrCodedText"; import { QrShapes } from "./QrShapes"; import { type QrShapesConfig } from "../mapper/QrShapesMapper"; export interface QrOptionsConfig { sizeRatio?: number; shapes?: QrShapesConfig; errorCorrectionLevel?: QrErrorCorrectionLevelConfig; } export declare class QrOptions { sizeRatio: number; shapes: QrShapes; errorCorrectionLevel: QrErrorCorrectionLevel; constructor(config: QrOptionsConfig); }