export declare enum LoggerErrorType {
    INFO = "info",
    DEBUG = "debug",
    ERROR = "error",
    WARN = "warn"
}
export declare const captureDprError: (error: unknown, message?: string | undefined, meta?: Record<string, string | string[]>, type?: LoggerErrorType) => void;
