/** Metadata of each nodes in the pool */
export interface NodePoolTemplateMetadata {
    /** Annotations to apply to each nodes */
    annotations: {
        [key: string]: string;
    };
    /** Finalizers to apply to each nodes */
    finalizers: string[];
    /** Labels to apply to each nodes */
    labels: {
        [key: string]: string;
    };
}
//# sourceMappingURL=NodePoolTemplateMetadata.d.ts.map