/** * Options for the {@link NotFileError} constructor. */ export interface NotFileErrorOptions extends ErrorOptions { message?: string; } /** * Error thrown when a filesystem entry is expected to be a file, * but is not. */ export declare class NotFileError extends Error { readonly filePath: string; readonly name = "NotFileError"; constructor(filePath: string, options?: NotFileErrorOptions); } //# sourceMappingURL=not-file-error.d.ts.map