import { Ora } from 'ora'; declare function noop(): void; export declare function getLogger(): { log: (...msg: string[]) => void | typeof noop; success: (msg: string) => Ora | typeof noop; startSpinner: (msg: string) => Ora | typeof noop; }; type DebugNamespaces = 'config' | 'paths' | 'scopes' | 'extraction'; export declare function devlog(namespace: DebugNamespaces, tag: string, values: Record): void; export {};