import type BarcodeReaderType from "dynamsoft-javascript-barcode"; declare global { interface Window { BarcodeReader: typeof BarcodeReaderType; } } export type BarcodeScannerProps = { onRead: (barcode: string) => void; }; export declare function BarcodeScanner({ onRead }: BarcodeScannerProps): import("react").JSX.Element;