import { ContentView } from "tns-core-modules/ui/content-view"; import { Property } from "tns-core-modules/ui/core/properties"; export declare const processEveryNthFrameProperty: any; export declare const preferFrontCameraProperty: Property; export declare const torchOnProperty: Property; export declare const pauseProperty: Property; export declare abstract class MLKitCameraView extends ContentView { static scanResultEvent: string; lastVisionImage: any; protected processEveryNthFrame: number; protected preferFrontCamera: boolean; protected torchOn: boolean; protected pause: boolean; protected updateTorch(): void; protected pauseScanning(): void; protected resumeScanning(): void; protected preProcessImage(image: any): any; }