/**
 * Logs a message to the console with a timestamp prefix.
 *
 * @param {...any} args - The arguments to log to the console.
 */
export function log(...args: any[]): void;
export default log;
