import * as $dara from '@darabonba/typescript'; export declare class ListRecognitionSamplesResponseBodySamplesSample extends $dara.Model { entityId?: string; imageUrl?: string; libId?: string; sampleId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRecognitionSamplesResponseBodySamples extends $dara.Model { sample?: ListRecognitionSamplesResponseBodySamplesSample[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ListRecognitionSamplesResponseBody extends $dara.Model { /** * @remarks * The page number. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 20 */ pageSize?: number; /** * @remarks * The ID of the request. * * @example * xxx-xxxx-xxxxx-xxxx */ requestId?: string; samples?: ListRecognitionSamplesResponseBodySamples; /** * @remarks * The total number of samples. * * @example * 5 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }