import AwaitedHandler from '../AwaitedHandler'; import AwaitedPath from '../AwaitedPath'; import AwaitedIterator from '../AwaitedIterator'; import NodeFactory from '../NodeFactory'; import { IAudioTrackList, IAudioTrack } from '../interfaces/official'; export declare const getState: (instance: IAudioTrackList) => IAudioTrackListProperties, setState: (instance: IAudioTrackList, properties: Partial) => void; export declare const awaitedHandler: AwaitedHandler; export declare const nodeFactory: NodeFactory; export declare const awaitedIterator: AwaitedIterator; export declare function AudioTrackListGenerator(): { new (): { readonly length: Promise; getTrackById(id: string): IAudioTrack; then(onfulfilled?: ((value: IAudioTrackList) => TResult1 | PromiseLike) | null | undefined, onrejected?: ((reason: any) => TResult2 | PromiseLike) | null | undefined): Promise; [Symbol.iterator](): Iterator; }; }; export interface IAudioTrackListProperties { awaitedPath: AwaitedPath; awaitedOptions: any; createInstanceName: string; createIterableName: string; readonly length?: Promise; } export declare const AudioTrackListPropertyKeys: string[]; export declare const AudioTrackListConstantKeys: never[];