/** * debug * @param namespace - The namespace to log * @param elapsedTime - Whether to show elapsed time since the last log * @returns A function that logs the namespace and arguments to the console */ declare const debug: (namespace?: string, elapsedTime?: boolean) => (...rest: any[]) => void; export { debug as default };