import { ChoiceType } from 'inquirer'; /** * Empty list option */ export declare const EMPTY_CHOICE: ChoiceType; /** * Format a list of branches into a list that is consumable by `prompt`. * * @param branches list of repository branches * @returns formated list of branches */ export declare const branchesToChoiceList: (branches: T[]) => ChoiceType[]; /** * Format a list of merge requests into a list that is consumable by `prompt`. * * @param mrs list of repository merge requests * @returns formated list of merge requests */ export declare const mergeRequestsToChoiceList: (mrs: T[]) => ChoiceType[];