import { IFileList, IFile } from '../../base/interfaces/official'; import { IFileListProperties } from '../../base/official-klasses/FileList'; export declare const getState: (instance: IFileList) => IFileListProperties, setState: (instance: IFileList, properties: Partial) => void; declare const FileListBaseClass: { 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 default class FileList extends FileListBaseClass implements IFileList { item(index: number): IFile; } export {};