import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { IDOMTokenList } from '../interfaces/official'; export declare const getState: (instance: IDOMTokenList) => IDOMTokenListProperties, setState: (instance: IDOMTokenList, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function DOMTokenListGenerator(): { new (): { [index: number]: string; readonly length: Promise; readonly value: Promise; add(...tokens: string[]): Promise; contains(token: string): Promise; item(index: number): Promise; remove(...tokens: string[]): Promise; replace(token: string, newToken: string): Promise; supports(token: string): Promise; toString(): Promise; toggle(token: string, force?: boolean | undefined): Promise; then(onfulfilled?: ((value: IDOMTokenList) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; forEach(callbackfn: (value: string, key: number, parent: IDOMTokenList) => void, thisArg?: any): Promise; entries(): Promise>; keys(): Promise>; values(): Promise>; [Symbol.iterator](): Iterator; }; }; export interface IDOMTokenListProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly length?: Promise; readonly value?: Promise; } export declare const DOMTokenListPropertyKeys: string[]; export declare const DOMTokenListConstantKeys: never[];