/**
 * Returns the string for the bash command to run
 * an echo, showing a message.
 *
 * @param text - The message to display
 * @param styles - One or more styles to apply to the text.
 *
 * @example echo('print this', 'bgRed blue')
 *
 * @returns The bash command string.
 */
export declare const echo: (text: string, styles?: string) => string;
//# sourceMappingURL=echo.d.ts.map