interface ConsoleTimer { start: () => void; stop: () => void; log: (msg: string) => () => void; } /** * Create a timer that can be started, stopped, and logged to the console. */ export declare const timer: (id: string) => ConsoleTimer; export {};