import { type Frame, type Point } from 'react-native-vision-camera'; /** * Detect barcodes from the camera preview */ export declare function zxing(frame: Frame, config?: ScanConfig): Record; /** * Detect barcodes from base64 */ export declare function decodeBase64(base64: string, config?: ScanConfig): Promise; export interface ScanConfig { multiple?: boolean; } export interface Result { barcodeText: string; barcodeFormat: string; barcodeBytesBase64: string; points: Point[]; } //# sourceMappingURL=index.d.ts.map