import { ModelData, Model } from "@kubernetes-models/base";
export interface ISecretKeyRef {
    /**
     * Key is the key of the secret to select from.
     */
    "key": string;
    /**
     * Name is the name of the secret
     */
    "name": string;
}
export declare class SecretKeyRef extends Model<ISecretKeyRef> implements ISecretKeyRef {
    "key": string;
    "name": string;
    constructor(data?: ModelData<ISecretKeyRef>);
}
export type { ISecretKeyRef as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1SecretKeyRef, SecretKeyRef as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1SecretKeyRef };
