import { WebPlugin } from '@capacitor/core'; import { DBRPlugin, TextResult } from './definitions'; import "dynamsoft-license"; import "dynamsoft-barcode-reader"; import "dynamsoft-capture-vision-router"; export declare class DBRWeb extends WebPlugin implements DBRPlugin { private cvr; private engineResourcePaths; initLicense(options: { license: string; }): Promise<{ success?: boolean; message?: string; }>; decodeBitmap(_options: { className?: string | undefined; methodName?: string | undefined; }): Promise<{ results: TextResult[]; }>; initialize(): Promise<{ success: boolean; }>; setEngineResourcePaths(options: { paths: any; }): Promise; initRuntimeSettingsFromString(options: { template: string; }): Promise; decode(options: { source: string | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement; template?: string; }): Promise<{ results: TextResult[]; }>; private arrayBufferToBase64; }