import * as $dara from '@darabonba/typescript'; export declare class ListModelServicesRequest extends $dara.Model { /** * @remarks * The model type. Valid values: * * - `system`: A built-in model. * * - `deployment`: A model from a custom deployment. * * This parameter is required. * * @example * system */ modelType?: string; /** * @remarks * The page number. * * @example * 10 */ pageNumber?: number; /** * @remarks * The page size. * * @example * 10 */ pageSize?: number; /** * @remarks * The cloud provider. Currently, only Alibaba Cloud is supported. * * @example * Aliyun */ provider?: string; /** * @remarks * The provider type. * * @example * providerType */ providerType?: string; workspaceId?: string; workspaceIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }