/** * Devtools Utility Functions * * Shared utility functions for the devtools panel. */ /** * Format a timestamp to time string with milliseconds (HH:MM:SS.mmm) */ export declare function formatTime(timestamp: number): string; /** * Format a timestamp to time string with milliseconds (HH:MM:SS.mmm) */ export declare function formatDateTime(timestamp: number): string; /** * Format a value for display with type information */ export declare function formatValue(value: unknown): { text: string; type: string; }; //# sourceMappingURL=utils.d.ts.map