import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLUListElementIsolate } from '../interfaces/isolate'; export declare const getState: (instance: IHTMLUListElementIsolate) => IHTMLUListElementIsolateProperties, setState: (instance: IHTMLUListElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLUListElementIsolate implements IHTMLUListElementIsolate { get compact(): Promise; get type(): Promise; } export interface IHTMLUListElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly compact?: Promise; readonly type?: Promise; } export declare const HTMLUListElementIsolatePropertyKeys: string[]; export declare const HTMLUListElementIsolateConstantKeys: never[];