/**
 * Commits a series of changes on specified dates
 * and pushes them to the remote
 *
 * @param dates the list of dates
 * @param max the maximum number of commits before pushing to github
 * @returns the total number of commits pushed
 *
 * @category Public API Module Helper
 */
export declare function makeCommits({ branch, dates, max, }: {
    branch: string;
    dates: Array<string>;
    max: number;
}): Promise<number>;
