import { F as Fn, C as Color } from './types-d298df5d.js'; export { C as Color, F as Fn } 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; /** * Trailing newline */ newline?: boolean; } declare function createFormatter(type: string, bgColor: Color, { target, textColor, 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 };