import { ModelData, Model } from "@kubernetes-models/base";
/**
 * LocalObjectReference contains enough information to locate the referenced Kubernetes resource object.
 */
export interface ILocalObjectReference {
    /**
     * Name of the referent.
     */
    "name": string;
}
/**
 * LocalObjectReference contains enough information to locate the referenced Kubernetes resource object.
 */
export declare class LocalObjectReference extends Model<ILocalObjectReference> implements ILocalObjectReference {
    "name": string;
    constructor(data?: ModelData<ILocalObjectReference>);
}
export type { ILocalObjectReference as IComGithubFluxcdPkgApisMetaLocalObjectReference, LocalObjectReference as ComGithubFluxcdPkgApisMetaLocalObjectReference };
