/**
 * Get a list of commits from the current working directory
 *
 * @param after the date to begin the list from
 * @param author some identifying string used to filter by commit author
 * @returns the list of commits
 *
 * @category Public API Module Helper
 */
export declare function getCommits({ after, author }?: {
    after?: string;
    author?: string;
}): Promise<string[]>;
