/** Git-host API dialect word table (P1-2). Leaf module — the single owner shared by the config layer * (env parse/validation) and `capabilities/repo-tools` (the two client implementations); config must not * value-import the capabilities layer (module-cycle gate §G), so the table lives below both. */ export declare const GIT_API_KINDS: readonly ["gitea", "github"]; export type GitApiKind = (typeof GIT_API_KINDS)[number]; export declare function isGitApiKind(v: unknown): v is GitApiKind; //# sourceMappingURL=git-api-kind.d.ts.map