/** * Thrown when the user-specified `libreOfficeBinaryPath` does not exist * on the filesystem. * * @param binaryPath - The path that was provided but not found. */ export default class SpecifiedLibreOfficeNotFoundError extends Error { constructor(binaryPath: string); }