import { ApplicationLogger } from "../logger";
export declare const getLogger: () => ApplicationLogger;
/**
 * Logs an error message with the provided context using the ApplicationLogger.
 * @param {any} error - The error object to log.
 * @param {string} methodName - The name of the method that encountered the error.
 * @param {any} props - Additional properties to include in the log context.
 */
export declare const logError: (error: any, methodName: string, props: any) => void;
