/** * Logging message case convention: * * Info, ready, success and debug messages: * - Start with lowercase * - Example: "info build started..." * * Errors and warnings: * - Start with uppercase * - Example: "error Failed to build" * * This convention helps distinguish between normal operations * and important alerts that require attention. */ import { type Logger, logger } from '../compiled/rslog'; export declare const isDebug: () => boolean; export declare const isVerbose: () => boolean; export { logger }; export type { Logger };