import * as $dara from '@darabonba/typescript'; export declare class CreateStreamToSearchLibRequest extends $dara.Model { /** * @remarks * The URL of the live stream to be ingested and analyzed. * * @example * rtmp://xxx */ input?: string; /** * @remarks * The namespace. * * @example * name-1 */ namespace?: string; /** * @remarks * The search library. * * @example * Stream_xxx */ searchLibName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }