export interface CommitAnswers { type: string; scope: string; subject: string; body: string; affects: string; breaking: 'yes' | 'no'; breakingChange: string; issues: string; } export declare function askQuestions(packageNames: Array): Promise;