interface Tag {
    className: string;
    tags: string[];
    probability: number;
}
export declare function getImageTags(imagePath: string, topK?: number): Promise<Tag[]>;
export {};
