import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import { IHTMLDataListElementIsolate } from '../interfaces/isolate'; import { ISuperHTMLCollection } from '../interfaces/super'; import { IHTMLOptionsCollection } from '../interfaces/official'; export declare const getState: (instance: IHTMLDataListElementIsolate) => IHTMLDataListElementIsolateProperties, setState: (instance: IHTMLDataListElementIsolate, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export default class HTMLDataListElementIsolate implements IHTMLDataListElementIsolate { get options(): Promise | IHTMLOptionsCollection; } export interface IHTMLDataListElementIsolateProperties { awaitedPath: AwaitedPath; awaitedOptions: any; readonly options?: Promise | IHTMLOptionsCollection; } export declare const HTMLDataListElementIsolatePropertyKeys: string[]; export declare const HTMLDataListElementIsolateConstantKeys: never[];