import { Command } from 'clipanion';
declare class FindCommand extends Command {
    static paths: string[][];
    latest: boolean;
    url: string | undefined;
    api: string | undefined;
    raw: boolean;
    static usage: import("clipanion").Usage;
    execute(): Promise<void>;
}
declare class UpgradeCommand extends Command {
    static paths: string[][];
    yes: boolean;
    static usage: import("clipanion").Usage;
    execute(): Promise<void>;
}
declare class HelpCommand extends Command {
    static paths: string[][];
    execute(): Promise<void>;
}
declare class VersionCommand extends Command {
    static paths: string[][];
    execute(): Promise<void>;
}
declare class MainCommand extends Command {
    static paths: never[][];
    execute(): Promise<void>;
}
declare class TestCommand extends Command {
    static paths: string[][];
    execute(): Promise<void>;
}
export { FindCommand, UpgradeCommand, HelpCommand, VersionCommand, TestCommand, MainCommand };
