import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { ICSSStyleDeclaration, ICSSRule } from '../interfaces/official'; export declare const getState: (instance: ICSSStyleDeclaration) => ICSSStyleDeclarationProperties, setState: (instance: ICSSStyleDeclaration, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function CSSStyleDeclarationGenerator(): { new (): { [index: number]: string; readonly cssFloat: Promise; readonly cssText: Promise; readonly length: Promise; readonly parentRule: ICSSRule; getPropertyPriority(property: string): Promise; getPropertyValue(property: string): Promise; item(index: number): Promise; removeProperty(property: string): Promise; setProperty(property: string, value: string, priority?: string | undefined): Promise; then(onfulfilled?: ((value: ICSSStyleDeclaration) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; [Symbol.iterator](): Iterator; }; }; export interface ICSSStyleDeclarationProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly cssFloat?: Promise; readonly cssText?: Promise; readonly length?: Promise; readonly parentRule?: ICSSRule; } export declare const CSSStyleDeclarationPropertyKeys: string[]; export declare const CSSStyleDeclarationConstantKeys: never[];