export declare const SHARED_MOBILENET_MODEL_URL = "https://store.gen-ai.fi/tm/models/mobilenet_v2/model.json"; export interface ImageNetTopClass { classId: number; className: string; probability: number; imageUrls: string[]; } export interface PredictImageNetTopKOptions { topK?: number; } /** * Returns the top `topK` ImageNet classes for a pre-computed probability vector, * enriched with class names and representative image URLs from the dataset. * * The dataset is loaded lazily on first call and cached in memory. * @param probabilities 1000-element softmax probability vector over ImageNet classes. * @param topK Maximum number of top classes to return. Defaults to 5. * @returns Sorted list of top classes with class name, probability, and image URLs. */ export declare function getImageNetTopClasses(probabilities: Float32Array | number[], topK?: number): Promise;