export declare function initTimer(): { stop: () => number; }; export interface Timer { stop(): number; }