export interface ScannerJSON { isFull: boolean; } export declare abstract class IdCaptureScanner { protected abstract readonly _isFull: boolean; static isSingleSideScanner(scanner: IdCaptureScanner): boolean; static isFullDocumentScanner(scanner: IdCaptureScanner): boolean; abstract toJSONObject(): ScannerJSON; }