import { HTMLPage } from './stream';
export declare function copyDirectory(src: string, dest: string, modifyHtml: (fileName: string, content: string) => string): Promise;
export declare function readFilesAndContent(directoryPath: string, htmlExclusive?: boolean): HTMLPage[];
export declare function createFuture(): {
promise: Promise;
resolve: (value: T | PromiseLike) => void;
reject: (reason?: any) => void;
};