import * as $dara from '@darabonba/typescript'; export declare class DeleteAppKeyRequest extends $dara.Model { /** * @remarks * The application ID. * * This parameter is required. * * @example * 110840611 */ appId?: string; /** * @remarks * The AppKey of the application. The AppKey is used for calling an API. * * This parameter is required. * * @example * 203708622 */ appKey?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }