import { Command } from '@oclif/core';
export default class Site extends Command {
    static description: string;
    static examples: string[];
    static args: {
        name: string;
        required: boolean;
    }[];
    validateUrl(url: string): string | false;
    getServerNumber(serverString: string): string | null;
    run(): Promise<void>;
}
