/** * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * Taken/adapted from DensityServer (https://github.com/dsehnal/DensityServer) * * @author David Sehnal */ import { FileHandle } from '../../../mol-io/common/file-handle.js'; export declare function openRead(filename: string): Promise; export declare function exists(filename: string): boolean; export declare function createFile(filename: string): Promise; export declare function writeInt(file: FileHandle, value: number, position: number): Promise;