import type { CameraOutput } from 'react-native-vision-camera'; import type { BarcodeScanner } from './specs/BarcodeScanner.nitro'; import type { BarcodeScannerOptions, BarcodeScannerOutputOptions } from './specs/BarcodeScannerFactory.nitro'; /** * Create a new {@linkcode BarcodeScanner}. * * The {@linkcode BarcodeScanner} can be used to * scan {@linkcode Barcode}s in a {@linkcode Frame}. */ export declare function createBarcodeScanner(options: BarcodeScannerOptions): BarcodeScanner; /** * Create a new Barcode Scanner {@linkcode CameraOutput}. * * The Barcode Scanner {@linkcode CameraOutput} can be * attached to a {@linkcode CameraSession}. */ export declare function createBarcodeScannerOutput(options: BarcodeScannerOutputOptions): CameraOutput;