interface IStyleOptions {
    bgColor: string;
    color?: string;
    icon?: string;
}
export declare function log(message: string, args?: any | any[], styleOptions?: IStyleOptions): void;
export declare function logError(message: string, args?: any | any[]): void;
export {};
