import BudCommand from '@roots/bud/cli/commands';
/**
 * `bud webpack` command
 */
export default class BudWebpackCommand extends BudCommand {
    static paths: string[][];
    static usage: import("@roots/bud-support/clipanion").Usage;
    /**
     * Command options
     */
    options: string[];
    /**
     * {@link Command.execute}
     */
    execute(): Promise<void>;
}
