import { Context } from "../imports/Context"; export declare class GlideLogBuilder { constructor(cx: Context, args: any[], ctorObj: Function, inNewExpr: boolean); log( message: string, arg1?: any, arg2?: any, arg3?: any, arg4?: any, arg5?: any ): void; withBroadcast(broadcast: boolean): GlideLogBuilder; withContext(key: string, value: string): GlideLogBuilder; withException(t: any): GlideLogBuilder; withLoggerName(name: string): GlideLogBuilder; withPrintableContext(keys: Array): GlideLogBuilder; }