export type WorktreeScope = { readonly read: readonly string[]; readonly write: readonly string[]; }; /** Canonical, case-folded repository-relative scope identity. */ export declare function normalizeWorktreeScopePath(path: string): string; export declare function normalizeWorktreeScope(scope: WorktreeScope): WorktreeScope; export declare function worktreeScopesOverlap(left: string, right: string): boolean; export declare function worktreeScopesConflict(left: WorktreeScope, right: WorktreeScope): boolean;