import { ModelData, Model } from "@kubernetes-models/base"; /** * ConfigMapRef is a reference to a config map that exists in the same namespace as the referring resource. */ export interface IConfigMapRef { "configMapName"?: string; } /** * ConfigMapRef is a reference to a config map that exists in the same namespace as the referring resource. */ export declare class ConfigMapRef extends Model implements IConfigMapRef { "configMapName"?: string; constructor(data?: ModelData); } export type { IConfigMapRef as IComGithubElasticCloudOnK8sV3PkgApisCommonV1ConfigMapRef, ConfigMapRef as ComGithubElasticCloudOnK8sV3PkgApisCommonV1ConfigMapRef };