import * as $dara from '@darabonba/typescript'; export declare class CreateSearchLibResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * 200 */ code?: string; /** * @remarks * The request ID. * * @example * ******3B-0E1A-586A-AC29-742247****** */ requestId?: string; /** * @remarks * The name of the search library. * * @example * test1 */ searchLibName?: string; /** * @remarks * Indicates whether the call was successful. * * - **true**: The call was successful. * * - **false**: The call failed. * * @example * true */ success?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }