import type { ResolverRegistry } from './types'; /** * Retrieves a git config value. * @param key The git config key (e.g., 'user.name', 'user.email') * @returns The config value as a string, or undefined if not found or error occurs */ export declare function getGitConfig(key: string): string | undefined; /** * Built-in git configuration resolvers. */ export declare const gitResolvers: ResolverRegistry;