import { ModelData, Model } from "@kubernetes-models/base";
/**
 * SecretRef struct for a reference to a secret key.
 */
export interface ISecretRef {
    "key": string;
    "secretName": string;
}
/**
 * SecretRef struct for a reference to a secret key.
 */
export declare class SecretRef extends Model<ISecretRef> implements ISecretRef {
    "key": string;
    "secretName": string;
    constructor(data?: ModelData<ISecretRef>);
}
export type { ISecretRef as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SecretRef, SecretRef as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SecretRef };
