import { BinaryBitmap, DecodeHintType, MultiFormatReader, Result } from '@zxing/library'; import { BrowserCodeReader } from './BrowserCodeReader'; export declare class BrowserMultiFormatReader extends BrowserCodeReader { protected readonly reader: MultiFormatReader; constructor(hints?: Map | undefined, timeBetweenScansMillis?: number); /** * Overwrite decodeBitmap to call decodeWithState, which will pay * attention to the hints set in the constructor function */ decodeBitmap(binaryBitmap: BinaryBitmap): Result; }