import TOSBase, { TosResponse } from "../base"; export interface GetObjectAITagInput { bucket: string; key: string; versionId?: string; } export interface GetObjectAITagOutput { Confidence: number; FirstCategory: string; I18nFirstCategory: string; SecondCategory: string; I18nSecondCategory: string; Tag: string; I18nTag: string; TagDescription: string; } /** * @private unstable method */ export declare function getObjectAITag(this: TOSBase, input: GetObjectAITagInput): Promise>;