/** * The canonical loop-core pattern list. Directory prefixes end in "/"; every * other entry is an exact repo-relative file path. Sorted by content (path-sort) * so the serialized order is stable and the parity comparison is order-free-safe. */ export declare const LOOP_CORE_PATTERNS: readonly string[]; /** * Whether a repo-relative path is in the loop-core set. A "/"-terminated pattern * matches the directory prefix; any other pattern matches the exact path. */ export declare function isLoopCorePath(path: string): boolean; //# sourceMappingURL=loopCorePaths.d.ts.map