import { GitCommonOptions } from "./types"; /** * Get the value of a git config key. Returns null if it's not set. * (Note: setting `throwOnError: true` will cause it to fail if the key is unset.) */ export declare function getConfigValue(options: { key: string; } & GitCommonOptions): string | null;