export interface GitRepository { name: string; owner: string; } export interface Config { githubToken: string; filePatterns: string[]; repo: GitRepository; issueLabel: string; branch: string; authorsByEmail?: Record; } export declare function readConfig(root: string, githubTokenOverride?: string): Promise;