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