import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLLIElementIsolate } from '../interfaces/isolate'; export declare const getState: (instance: IHTMLLIElementIsolate) => IHTMLLIElementIsolateProperties, setState: (instance: IHTMLLIElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLLIElementIsolate implements IHTMLLIElementIsolate { get type(): Promise; get value(): Promise | Promise; } export interface IHTMLLIElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly type?: Promise; readonly value?: Promise | Promise; } export declare const HTMLLIElementIsolatePropertyKeys: string[]; export declare const HTMLLIElementIsolateConstantKeys: never[];