import { Commit } from '../types'; export declare type CommitRefs = { ref: string; baseRef?: string; mergeRef?: string; }; export declare const asCommitRefs: (commit: Commit) => CommitRefs;