/** * Thrown when the input file path passed to `msoffice2pdf()` does not exist * on the filesystem. * * @param inputPath - The path that was not found. */ export default class InputFileNotFoundError extends Error { constructor(inputPath: string); }