import { FS } from '../BaseAsmModule'; /** * Check if given mount path is already mounted * * @param {FS} FS wasm module filesystem * @param {string} mountPath path to wasm filesystem * @param {dir | file} type type of mountPath * * @returns {boolean} true if mounted, false otherwise or error occurred */ declare const isMounted: (FS: FS, mountPath: string, type: "dir" | "file") => boolean; export { isMounted }; //# sourceMappingURL=isMounted.d.ts.map