import Command, { flags } from './../../base'; import { Config } from './../../types'; interface SecretDeleteInput { config: Config; selectedSecret: string; confirmDelete: boolean; } export default class SecretsDelete extends Command { static description: string; static flags: flags.Input; confirmSecretDeletion: (inputs: SecretDeleteInput) => Promise; deleteSecretAPI: (inputs: SecretDeleteInput) => Promise; logMessage: (inputs: SecretDeleteInput) => SecretDeleteInput; sendAnalytics: (inputs: SecretDeleteInput) => Promise; run(): Promise; } export {};