import Command from './../../base'; import { Config } from './../../types'; import { flags } from '@oclif/parser'; export interface SetSecretInputs { config: Config; key: string; value: string; valueFilename: string; } export default class SecretsSet extends Command { static description: string; static flags: { key: flags.IOptionFlag; value: flags.IOptionFlag; 'from-file': flags.IOptionFlag; }; validateKeyInput: (input: string) => Promise; validateValueInput: (input: string) => Promise; resolveFileSecret: (input: SetSecretInputs) => Promise; promptForSecret: (input: SetSecretInputs) => Promise; setSecret: (inputs: SetSecretInputs) => Promise; logMessage: (inputs: SetSecretInputs) => SetSecretInputs; sendAnalytics: (inputs: SetSecretInputs) => Promise; run(): Promise; }