import type { Configuration } from '@roots/bud-framework/config';
import { Bud } from '@roots/bud-framework';
export type Parameters = [(Bud | Configuration['devtool'])?];
export interface devtool {
    (...devtool: Parameters): Promise<Bud>;
}
export interface facade {
    (...devtool: Parameters): Bud;
}
export declare const devtool: devtool;
