import { Property } from "tns-core-modules/ui/core/properties"; import { MLKitCameraView } from "../mlkit-cameraview"; import { MLKitCustomModelType } from "./index"; export declare const localModelFileProperty: any; export declare const labelsFileProperty: Property; export declare const modelInputShapeProperty: Property; export declare const modelInputTypeProperty: Property; export declare const maxResultsProperty: Property; export declare abstract class MLKitCustomModel extends MLKitCameraView { static scanResultEvent: string; protected localModelFile: string; protected labelsFile: string; protected maxResults: number; protected modelInputShape: Array; protected modelInputType: MLKitCustomModelType; protected onSuccessListener: any; protected detectorBusy: boolean; protected labels: Array; } export declare function getLabelsFromAppFolder(labelsFile: string): Array; export declare function getLabelsFromFile(labelsFile: string): Array;