import { SecretRef } from './SecretRef';
/** Key-manager certificate secret container */
export interface Certificate {
    /** ID of the certificate */
    id: string;
    /** Name of the certificate */
    name: string;
    /** Certificate region */
    region: string;
    /** List of secrets in certificate container */
    secrets: SecretRef[];
}
//# sourceMappingURL=Certificate.d.ts.map