type ValidationResult = {
    valid: true;
} | {
    valid: false;
    error: string;
};
/**
 * Validates a single file path: checks format and project boundary.
 */
export declare function validatePath(path: string): ValidationResult;
/**
 * Validates a source + destination path pair: checks format and project boundary for both.
 */
export declare function validatePathPair(source: string, destination: string): ValidationResult;
export {};
//# sourceMappingURL=path-validators.d.ts.map