import browserSync from "browser-sync";
export interface IWrapperConfig {
    bsOptions: browserSync.Options;
    jcrContentRoots: string[];
    proxyPort: number;
    servers: string[];
    dumpLibsPath?: string;
}
export declare function create(args: IWrapperConfig): Promise<void>;
export declare function reload(host: string, inputList: string[]): void;
