import * as $dara from '@darabonba/typescript'; export declare class ListWorkspacesRequest extends $dara.Model { /** * @remarks * The name of the workspace. Used to filter the results. * * @example * intl_synonym_module */ name?: string; /** * @remarks * The page number to return. Default value: 1. * * @example * 1 */ pageNumber?: string; /** * @remarks * The number of entries to return per page. * * @example * 10 */ pageSize?: string; /** * @remarks * The ID of the resource group to which the workspace belongs. * * @example * rg-aek25sodlatnioq */ resourceGroupId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }