declare type BlameInfo = {
    author: string;
    authorMail: string;
    authorTime: Date;
    authorTz: string;
    committer: string;
    committerMail: string;
    committerTime: Date;
    committerTz: string;
    summary: string;
    previous: string;
    filename: string;
    sourceCode: string;
};
export declare function blameLine(filepathWithLine: string): Promise<BlameInfo>;
export {};
