import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLBodyElementIsolate } from '../interfaces/isolate'; export declare const getState: (instance: IHTMLBodyElementIsolate) => IHTMLBodyElementIsolateProperties, setState: (instance: IHTMLBodyElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLBodyElementIsolate implements IHTMLBodyElementIsolate { get aLink(): Promise; get background(): Promise; get bgColor(): Promise; get link(): Promise; get text(): Promise; get vLink(): Promise; } export interface IHTMLBodyElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly aLink?: Promise; readonly background?: Promise; readonly bgColor?: Promise; readonly link?: Promise; readonly text?: Promise; readonly vLink?: Promise; } export declare const HTMLBodyElementIsolatePropertyKeys: string[]; export declare const HTMLBodyElementIsolateConstantKeys: never[];