import { IOError } from './IOError'; /** * Error used when a file system access goes wrong. */ export declare class FileSystemError extends IOError { constructor(file: string, msg?: string); }