import { Provider } from './types'; import { AgentTrailerRule } from './trailers'; export interface GitAuthorIdentity { name?: string | RegExp; email?: string | RegExp; } export type LocalGitRefScope = "default" | "remote" | "all"; export interface LocalGitCoAuthorProviderOptions { repos?: string[]; roots?: string[]; identities?: readonly GitAuthorIdentity[]; refScope?: LocalGitRefScope; strict?: boolean; maxDepth?: number; rules?: readonly AgentTrailerRule[]; git?: string; name?: string; } export declare const localGitCoAuthorProvider: (options: LocalGitCoAuthorProviderOptions) => Provider; //# sourceMappingURL=local-git-coauthor.d.ts.map