import { type Result } from '@opensip-cli/core'; import type { RepairError } from './types.js'; export declare const MAX_REPAIR_FILE_BYTES: number; export interface SafeRepairPath { readonly absolutePath: string; readonly relativePath: string; } export interface SafeTextFile extends SafeRepairPath { readonly content: string; readonly hash: string; } export declare function sha256Text(content: string): string; export declare function resolveRepairTargetPath(projectRoot: string, rawPath: string): Result; export declare function readSafeTextFile(projectRoot: string, rawPath: string): Result; //# sourceMappingURL=path-safety.d.ts.map