import * as tf from "@tensorflow/tfjs"; import CVImage from "../utils/image"; export default class CVModel { constructor(); initialize(...options: any): Promise; infer(img: CVImage): Promise; configure(...options: any): void; _loadRoboflowModel(modelURL: string): Promise<(tf.GraphModel | undefined)[]>; } export declare class RFObjectDetectionPrediction { class?: string; confidence?: number; bbox?: { x: number; y: number; width: number; height: number; }; color?: string; }