/**
 * SPDX-License-Identifier: Apache-2.0
 */
import { type PodName } from './pod_name.js';
import { type NamespaceName } from '../namespace/namespace_name.js';
import { ResourceRef } from '../resource_ref.js';
/**
 * Represents a Kubernetes pod reference which includes the namespace name and pod name.
 */
export declare class PodRef extends ResourceRef<PodName> {
    private constructor();
    /**
     * Creates a pod reference.
     * @param namespace The namespace name.
     * @param podName The pod name.
     */
    static of(namespace: NamespaceName, podName: PodName): PodRef;
}
