export * from "../../common/src/error.js"; /** * A collection of possible error and warning messages. */ export declare const FsErrorMessage: { NotReadable(path: string): string; NotParsable(path: string, type?: string): string; DeriverAsyncConfigurationConflict(): string; IsNotXPackageJson(): string; Generic(): string; GuruMeditation(): string; NotAGitRepositoryError(): string; PackageJsonNotParsable(packageJsonPath: string, reason: unknown): string; DuplicatePackageName(packageName: string, firstPath: string, secondPath: string): string; DuplicatePackageId(id: string, firstPath: string, secondPath: string): string; };