import { Command } from '@oclif/core';
import { Credential, Profile } from '@zendesk/zcli-core/src/types';
export default class List extends Command {
    static description: string;
    static examples: string[];
    renderProfiles(profiles: Credential[], loggedInProfile: Profile | undefined): void;
    run(): Promise<void>;
}
