import { LogTagStyleObject } from "./types";
import { LogTag } from "./logTag";
type TaggedLoggerOptions = {
    bg?: string;
    style?: LogTagStyleObject;
    logFn?: (...args: any[]) => void;
    tags?: LogTag[];
};
type TaggedLogger = {
    (...args: any[]): void;
    childLogger: typeof taggedLogger;
};
export declare function taggedLogger(text: string, options?: TaggedLoggerOptions): TaggedLogger;
export {};
