export declare const USER_HOME_DIR: string; export type CoAuthor = { displayName: string; name: string; email: string; }; export declare function readGitKnownCoAuthors(filePath: string): CoAuthor[]; export declare function updateGitKnownCoAuthors(filePath: string, coAuthors: CoAuthor[]): boolean; export type AddCoauthorsToConfigParams = { name: string; email: string; coAuthorsFile: string; }; export declare function addCoauthorToConfig({ name, email, coAuthorsFile, }: AddCoauthorsToConfigParams): void; export declare function listConfiguredCoAuthors(coAuthorsFile: string): void; //# sourceMappingURL=config.d.ts.map