/// <reference types="webpack" />
import { Configuration } from 'webpack';
export default class Spin {
    dev: boolean;
    test: boolean;
    watch: boolean;
    cmd: string;
    cwd: string;
    options: any;
    constructor(cwd: any, cmd: any);
    merge(config: any, overrides: any): Configuration;
    mergeWithStrategy(strategy: any, config: any, overrides: any): Configuration;
}
