import { Deps, Repository } from '../../types';
/**
 * Gets a list of commit dates for a given repo
 *
 * @param repo the repository object to lookup commits from
 * @returns the list of commit dates
 *
 * @category Public API Module
 */
export declare function getCommitsForRepo({ cache, cd, config }: Deps, repo: Repository): Promise<string[]>;
