import * as $dara from '@darabonba/typescript'; export declare class DeleteApiStageVariableRequest extends $dara.Model { /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * 523e8dc7bbe04613b5b1d726c2a7889d */ groupId?: string; securityToken?: string; /** * @remarks * The ID of the environment. * * This parameter is required. * * @example * 6EF60BEC-0242-43AF-BB20-270359FB54A7 */ stageId?: string; /** * @remarks * The name of the variable to be deleted. This parameter is case-sensitive. * * This parameter is required. * * @example * serverName */ variableName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }