import { AcceptableTlsVersions } from '../../../../helpers/types/tls-context'; import { AbstractSecretDescribe } from '../../../../command-base/abstract-secret-describe'; export default class Describe extends AbstractSecretDescribe { static description: string; static examples: { description: string; command: string; }[]; run(): Promise; transformData(data: any): any[]; buildTLSVersionArray(tlsVersions: AcceptableTlsVersions): string[]; }