/** * A tuple of name, email, and date for the author or commit * info in a commit. */ export declare class CommitIdentity { readonly name: string; readonly email: string; readonly date: Date; readonly tzOffset: number; /** * Parses a Git ident string (GIT_AUTHOR_IDENT or GIT_COMMITTER_IDENT) * into a commit identity. Returns null if string could not be parsed. */ static parseIdentity(identity: string): CommitIdentity | null; constructor(name: string, email: string, date: Date, tzOffset?: number); }