import { F as Fn, C as Color } from './types-d298df5d.js'; import 'picocolors'; interface Options { /** * Log target. * A function that accepts a string */ target?: Fn; /** * Log text color, default to bgColor */ textColor?: Color; /** * An option if the log type should be shown as a badge */ isBadge?: boolean; /** * Trailing newline */ newline?: boolean; } declare function createFormatter(iconOrType: string, iconColor: Color, { target, textColor, isBadge, newline, }?: Options): (...messages: any[]) => void; declare const log: (...messages: any[]) => void; declare const info: (...messages: any[]) => void; declare const warn: (...messages: any[]) => void; declare const success: (...messages: any[]) => void; declare const error: (...messages: any[]) => void; export { Options, createFormatter, error, info, log, success, warn };