import type { RuleRepo } from "./add-rule-types";
export declare const CACHE_ROOT_DIR: string;
export declare const DEFAULT_BRANCH = "main";
export declare const RULE_FILE_EXTENSION = ".mdc";
/**
 * Returns the cache directory for a given repository owner.
 * @param owner - The repository owner.
 * @returns The cache directory path.
 */
export declare function getRepoCacheDir(owner: string): string;
export declare const RULES_REPOS: RuleRepo[];
