/**
 * Formats a time interval in milliseconds, converting it to seconds if `ms` >= 1000.
 * Returns a string like "3ms" or "3.10s".
 */
export declare function formatms(ms: number): string;
