export type BarcodeFormat = 'CODE128' | 'CODE39' | 'EAN13' | 'EAN8' | 'UPC' | 'ITF'; export interface EncodedBarcode { bars: string; text: string; } export declare const encodeBarcode: (value: string, format: BarcodeFormat) => EncodedBarcode;