import * as $dara from '@darabonba/typescript'; export declare class QueryVideoCognitionJobResponseBodyInput extends $dara.Model { media?: string; type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBodyResultsResult extends $dara.Model { data?: string; type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBodyResults extends $dara.Model { result?: QueryVideoCognitionJobResponseBodyResultsResult[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryVideoCognitionJobResponseBody extends $dara.Model { input?: QueryVideoCognitionJobResponseBodyInput; /** * @remarks * The status of the task. Valid values: * * * **Success** * * **Fail** * * **Processing** * * **Submitted** * * @example * Success */ jobStatus?: string; params?: string; /** * @remarks * The request ID. * * @example * ******11-DB8D-4A9A-875B-275798****** */ requestId?: string; results?: QueryVideoCognitionJobResponseBodyResults; templateId?: string; /** * @remarks * The user-defined data. * * @example * {"userId":"123432412831"} */ userData?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }