import type mode from '@roots/bud/cli/flags/mode';
import BuildCommand from '@roots/bud/cli/commands/build';
/**
 * `bud build development` command
 */
export default class BuildDevelopmentCommand extends BuildCommand {
    /**
     * {@link Command.paths}
     */
    static paths: string[][];
    /**
     * {@link Command.usage}
     */
    static usage: import("clipanion").Usage;
    mode: typeof mode;
    hot: boolean;
    proxy: string;
    browser: string | boolean;
    indicator: boolean;
    overlay: boolean;
    port: number;
    reload: boolean;
}
