type Color = "green" | "red_background" | "white_background"; export declare const greenText: (text: string) => string; export declare const boldText: (text: string) => string; export declare const redBackground: (text: string) => string; export declare const whiteBackground: (text: string) => string; /** * Prompts the user with a question and returns the user input. * * @param {string} question The question to log to the users terminal. * @param {Color | undefined} color The color to use for the question. * @param {boolean | undefined} bold Whether to make the question bold. * @returns {Promise} The user input. */ export declare function getUserInput(question: string, color?: Color, bold?: boolean): Promise; export {};