import { Command, flags } from '@oclif/command';
export default class DevFeature extends Command {
    static description: string;
    static aliases: string[];
    static flags: {
        help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
        start: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        buildFromDiff: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        buildFromDir: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        toXml: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        toYaml: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        path: flags.IOptionFlag<string | undefined>;
        retrieve: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        deploy: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
        username: flags.IOptionFlag<string | undefined>;
    };
    static args: {
        name: string;
        required: boolean;
    }[];
    run(): Promise<void>;
}
