import { Command } from '@oclif/core';
type WhichResult = {
    aliasOf?: string;
    plugin: string;
};
export default class Which extends Command {
    static description: string;
    static enableJsonFlag: boolean;
    static examples: {
        command: string;
        description: string;
    }[];
    static strict: boolean;
    run(): Promise<WhichResult>;
}
export {};
