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