import { type BarcodeSymbology } from '../../../utils/barcode.js'; interface BarcodeProps { value: string; height?: number; showValue?: boolean; /** Force a symbology. `auto` picks EAN/UPC when the value is a valid GTIN. */ format?: 'auto' | BarcodeSymbology; class?: string; } declare const Barcode: import("svelte").Component; type Barcode = ReturnType; export default Barcode;