///
import { ImageProcessingResult } from "./interfaces.js";
import { BaseImageModel } from "./base.js";
export type ObjectDetectionPrediction = {
class: string;
color: string;
confidence: number;
x: number;
y: number;
width: number;
height: number;
};
export type ObjectDetectionResult = ImageProcessingResult & {
objects: ObjectDetectionPrediction[];
};
export declare class ObjectDetectionModel extends BaseImageModel {
process: (input: string | Buffer) => Promise;
}