import type { LoggerFunctionType } from "../types"; /** * By default, Braze logs to the browser console. Call this method to set a custom log action and enable debug-level log statements. * * @param loggerFunction - A function to invoke with log messages. Should accept a single string * parameter for message. */ export declare function setLogger(loggingFunction: LoggerFunctionType): void;