/// <reference types="node" />
/// <reference types="node" />
/// <reference types="cheerio" />
interface RootContext {
    readonly indexPath: string;
    readonly buildDirectoryPath: string;
    readonly indexString: Buffer;
    readonly $: cheerio.Root;
}
export default function extractRoot(buildDirectory: string): Promise<RootContext>;
export {};
