import { ModelData, Model } from "@kubernetes-models/base";
/**
 * SignatureKey is the specification of a key required to verify commit signatures with
 */
export interface ISignatureKey {
    /**
     * The ID of the key in hexadecimal notation
     */
    "keyID": string;
}
/**
 * SignatureKey is the specification of a key required to verify commit signatures with
 */
export declare class SignatureKey extends Model<ISignatureKey> implements ISignatureKey {
    "keyID": string;
    constructor(data?: ModelData<ISignatureKey>);
}
export type { ISignatureKey as IComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SignatureKey, SignatureKey as ComGithubArgoprojArgoCdV3PkgApisApplicationV1alpha1SignatureKey };
