import * as $dara from '@darabonba/typescript'; export declare class DeleteBackendModelRequest extends $dara.Model { /** * @remarks * The ID of the backend service. * * @example * 20bcdc9453524b78a8beb1f6de21edb7 */ backendId?: string; /** * @remarks * The ID of the backend model. * * This parameter is required. * * @example * 4be6b110b7aa40b0bf0c83cc00b3bd86 */ backendModelId?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **PRE** * * **TEST** * * @example * TEST */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }