import { ModelData, Model } from "@kubernetes-models/base"; /** * SecretRef is a reference to a secret that exists in the same namespace. */ export interface ISecretRef { /** * SecretName is the name of the secret. */ "secretName"?: string; } /** * SecretRef is a reference to a secret that exists in the same namespace. */ export declare class SecretRef extends Model implements ISecretRef { "secretName"?: string; constructor(data?: ModelData); } export type { ISecretRef as IComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1SecretRef, SecretRef as ComGithubElasticCloudOnK8sV3PkgApisCommonV1beta1SecretRef };