/**
 * Creates a changelog based on data available in Git and GitHub:
 *
 * - Git: latest commits and tags
 * - GitHub: PRs and Issues
 */
export declare function run(...args: any[]): Promise<boolean>;
export declare function getChangelogText(mode: string, startRef: string): Promise<string>;
