import { OnChunkCallbackNoProgress } from '@standardnotes/files' import { FileSelectionResponse } from '../types' export interface FileReaderInterface { selectFiles(): Promise readFile(file: File, minimumChunkSize: number, onChunk: OnChunkCallbackNoProgress): Promise available(): boolean maximumFileSize(): number | undefined }