type ProfileEntry = { calls: number; duration: number; name: string; }; export declare const timeSync: (name: string, fn: () => T) => T; export declare const timeAsync: (name: string, fn: () => Promise) => Promise; export declare const clearProfiles: () => void; export declare const printProfileResults: () => void; export declare const getProfileResults: () => ProfileEntry[]; export {}; //# sourceMappingURL=profiling.d.ts.map