import { type ObjectMeta } from '../../resources/object-meta.js';
import { type NamespaceName } from '../../../../types/namespace/namespace-name.js';
export declare class K8ClientObjectMeta implements ObjectMeta {
    readonly namespace: NamespaceName;
    readonly name: string;
    readonly labels?: {
        [key: string]: string;
    };
    readonly annotations?: {
        [key: string]: string;
    };
    readonly uid?: string;
    constructor(namespace: NamespaceName, name: string, labels?: {
        [key: string]: string;
    }, annotations?: {
        [key: string]: string;
    }, uid?: string);
}
