import { BoundingBox } from '../BoundingBox'; export declare type Prediction = { probability: number; tagId: string; tagName: string; boundingBox: BoundingBox; }; export declare type Predictions = { id: string; created: Date | null; predictions: Array; };