import * as $dara from '@darabonba/typescript'; export declare class ListYikeProductionsRequest extends $dara.Model { /** * @remarks * The maximum number of results to return on each page. * * @example * 50 */ maxResults?: number; /** * @remarks * The pagination token from a previous response. Use this to retrieve the next page of results. * * @example * Token */ nextToken?: string; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ pageNo?: number; /** * @remarks * The number of results to return on each page. Default value: 10. Maximum value: 50. * * @example * 10 */ pageSize?: number; /** * @remarks * The workspace ID. * * @example * llm-zna577pdximvztk5 */ workspaceId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }