import Command, { flags } from './../../base'; export default class AccountSignout extends Command { static description: string; static flags: flags.Input; checkForAccessToken: () => Promise; startSpinner: () => void; signUserOut: () => Promise; stopSpinner: () => void; logMessage: () => void; sendAnalytics: () => void; run(): Promise; }