import { IndexedDbConfig } from '../definitions';
export declare class FileSystemMock {
    private indexedStorage;
    private static instance;
    static getInstance(): FileSystemMock;
    read(path: string, offset?: number, count?: number): Promise<Uint8Array>;
    write(path: string, data: Uint8Array, append?: boolean): Promise<void>;
    remove(path: string): Promise<void>;
    updateIndexedDbConfig(config: Partial<IndexedDbConfig>): void;
    private removeExtraSlashes;
}
