import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLModElementIsolate } from '../interfaces/isolate'; export declare const getState: (instance: IHTMLModElementIsolate) => IHTMLModElementIsolateProperties, setState: (instance: IHTMLModElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLModElementIsolate implements IHTMLModElementIsolate { get cite(): Promise; get dateTime(): Promise; } export interface IHTMLModElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly cite?: Promise; readonly dateTime?: Promise; } export declare const HTMLModElementIsolatePropertyKeys: string[]; export declare const HTMLModElementIsolateConstantKeys: never[];