import * as $dara from '@darabonba/typescript'; export declare class ListSearchLibResponseBodySearchLibInfoListIndexInfo extends $dara.Model { /** * @example * Normal */ indexReadiness?: string; /** * @example * Active */ indexStatus?: string; /** * @example * face */ indexType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListSearchLibResponseBodySearchLibInfoList extends $dara.Model { indexInfo?: ListSearchLibResponseBodySearchLibInfoListIndexInfo[]; searchLibConfig?: string; /** * @remarks * The search library. * * @example * faceSearchLib */ searchLibName?: string; /** * @remarks * The status of the search library. * * * normal * * deleting * * deleteFail * * @example * normal */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListSearchLibResponseBody extends $dara.Model { /** * @remarks * The status code returned. * * @example * 200 */ code?: string; /** * @remarks * The request ID. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * Information about search libraries. */ searchLibInfoList?: ListSearchLibResponseBodySearchLibInfoList[]; /** * @remarks * Indicates whether the request was successful. * * @example * true */ success?: string; /** * @remarks * The total number of entries returned. * * @example * 8 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }