import { LogTagStyleObject } from "./types";
import { CombinedLogTags } from "./utils";
export type LogTag = [tag: string, style: string];
export declare function logTag(text: string, styleOrBg?: LogTagStyleObject | string): LogTag;
export declare function logTags(...tags: [text: string, styleOrBg?: LogTagStyleObject | string][]): CombinedLogTags;
