/** * Logging utilities for the docusaurus-plugin-llms plugin. */ /** * Logging level enumeration */ export declare enum LogLevel { QUIET = 0, NORMAL = 1, VERBOSE = 2 } /** * Set the logging level for the plugin * @param level - The logging level to use */ export declare function setLogLevel(level: LogLevel): void; /** * Logger utility for consistent logging across the plugin */ export declare const logger: { error: (message: string) => void; warn: (message: string) => void; info: (message: string) => void; verbose: (message: string) => void; };