import type { CssColor } from '@breadstone/mosaik-themes'; import type { QRErrorCorrection } from '../../../Types/QRErrorCorrection'; /** * Represents the `IQRCodeElementProps` interface. * * @public */ export interface IQRCodeElementProps { text: string; radius: number; dimension: number; errorCorrection: QRErrorCorrection; backgroundColor: CssColor | null | undefined; foregroundColor: CssColor | null | undefined; } //# sourceMappingURL=IQRCodeElementProps.d.ts.map