/**
 * A simplified logging utility that replaces react-native-beautiful-logs
 * with basic console logging functionality.
 */
export type LogLevel = 'debug' | 'info' | 'warn' | 'error';
/**
 * Main logging function that provides a simple console logging with timestamp and log level.
 *
 * @param levelOrMessage - Log level or message
 * @param args - Additional arguments to log
 */
export declare const log: (levelOrMessage: LogLevel | string, ...args: unknown[]) => void;
//# sourceMappingURL=logger.d.ts.map