import * as $dara from '@darabonba/typescript'; export declare class DetachKeyPairResponseBodyResultsResult extends $dara.Model { code?: string; instanceId?: string; message?: string; success?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DetachKeyPairResponseBodyResults extends $dara.Model { result?: DetachKeyPairResponseBodyResultsResult[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DetachKeyPairResponseBody extends $dara.Model { /** * @remarks * The number of instances from which the SSH key pair failed to be unbound. * * @example * 0 */ failCount?: string; /** * @remarks * The name of the key pair. * * @example * testKeyPairName */ keyPairName?: string; /** * @remarks * The ID of the request. * * @example * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E */ requestId?: string; results?: DetachKeyPairResponseBodyResults; /** * @remarks * The total number of instances from which you want to unbind the SSH key pair. * * @example * 2 */ totalCount?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }