import { NodePoolMetadata } from './NodePoolMetadata'; import { NodePoolSpec } from './NodePoolSpec'; import { NodePoolStatus } from './NodePoolStatus'; import { SdkResponse } from "@g42cloud/g42cloud-sdk-core/SdkResponse"; export declare class UpdateNodePoolResponse extends SdkResponse { kind?: string; apiVersion?: string; metadata?: NodePoolMetadata; spec?: NodePoolSpec; status?: NodePoolStatus; constructor(); withKind(kind: string): UpdateNodePoolResponse; withApiVersion(apiVersion: string): UpdateNodePoolResponse; withMetadata(metadata: NodePoolMetadata): UpdateNodePoolResponse; withSpec(spec: NodePoolSpec): UpdateNodePoolResponse; withStatus(status: NodePoolStatus): UpdateNodePoolResponse; } //# sourceMappingURL=UpdateNodePoolResponse.d.ts.map