type LoggerMessage = Record<string, any> | number | string;
type LoggerType = 'error' | 'info' | 'warning';
export { LoggerMessage, LoggerType };
