import type { GitHub } from '../infra/github';
import type { Commit } from '../types/git';
export declare const lookupCommitsInIssues: (github: GitHub, commits: Commit[]) => Promise<Commit[]>;
export declare const chunk: <T>(data: T[], chunkSize: number) => T[][];
