import { LogLevel, type BarkLogger } from './generated/bark'; /** * A `BarkLogger` that forwards records to the JS `console`. * * Useful as a default during development. For production, implement * `BarkLogger` yourself to forward to Sentry, Reactotron, etc. */ export declare class ConsoleBarkLogger implements BarkLogger { log(level: LogLevel, target: string, message: string): void; } /** * Install a default `ConsoleBarkLogger`. Returns the logger so callers can * later detach it via `clearLogger()`. * * Calling this multiple times replaces the previous logger in-place. */ export declare function barkAttachConsoleLogger(maxLevel?: LogLevel): BarkLogger; //# sourceMappingURL=Logger.d.ts.map