import * as $dara from '@darabonba/typescript'; export declare class DetachApiProductRequestApis extends $dara.Model { /** * @remarks * The API ID. * * This parameter is required. * * @example * ba84c55eca46488598da17c0609f3ead */ apiId?: string; /** * @remarks * The environment to which the API is published. Valid values: * * * **RELEASE**: the production environment * * **PRE**: the pre-release environment * * **TEST**: the test environment * * This parameter is required. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DetachApiProductRequest extends $dara.Model { /** * @remarks * The ID of the API product. * * This parameter is required. * * @example * 117b7a64a8b3f064eaa4a47ac62aac5e */ apiProductId?: string; /** * @remarks * The APIs that you want to detach from the API product. * * This parameter is required. */ apis?: DetachApiProductRequestApis[]; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }