import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { ICSSRuleList, ICSSRule } from '../interfaces/official'; export declare const getState: (instance: ICSSRuleList) => ICSSRuleListProperties, setState: (instance: ICSSRuleList, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function CSSRuleListGenerator(): { new (): { [index: number]: ICSSRule; readonly length: Promise; item(index: number): ICSSRule; then(onfulfilled?: ((value: ICSSRuleList) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; [Symbol.iterator](): Iterator; }; }; export interface ICSSRuleListProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly length?: Promise; } export declare const CSSRuleListPropertyKeys: string[]; export declare const CSSRuleListConstantKeys: never[];