import { default as React } from 'react'; import { BarcodeFormat } from './barcode-encoder'; export interface BarcodeProps { value: string; format: BarcodeFormat; width?: number; height?: number; displayValue?: boolean; font?: string; fontSize?: number; textMargin?: number; foreground?: string; background?: string; margin?: number; onError?: (err: Error) => void; id?: string; className?: string; alt?: string; } declare const Barcode: React.FC; export { Barcode }; export default Barcode;