import { Manifest, type ManifestConfig } from "@cdktf/provider-kubernetes/lib/manifest";
import { Construct } from "constructs";
export declare class KubernetesUpdateInfoV1alpha1Manifest extends Manifest {
    constructor(scope: Construct, id: string, config: KubernetesUpdateInfoV1alpha1ManifestConfig);
}
export interface KubernetesUpdateInfoV1alpha1ManifestConfig extends ManifestConfig {
    manifest: {
        apiVersion?: "nodemanagement.gke.io/v1alpha1";
        kind?: "UpdateInfo";
        metadata: {
            annotations?: {
                [key: string]: string;
            };
            labels?: {
                [key: string]: string;
            };
            name: string;
            namespace?: string;
        };
        spec?: {
            Type?: string;
            instanceGroupUrl?: string;
            surgeNode?: string;
            targetNode?: string;
            /** Format: date-time */
            validUntil?: string;
        };
    };
}
