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; export declare function reload(host: string, inputList: string[]): void;