import * as $dara from '@darabonba/typescript'; export declare class DeleteModelRequest extends $dara.Model { /** * @remarks * The ID of the API group to which the model belongs. * * This parameter is required. * * @example * 30e792398d6c4569b04c0e53a3494381 */ groupId?: string; /** * @remarks * The name of the model. * * This parameter is required. * * @example * Test */ modelName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }