export type LatencyPillTone = 'auto' | 'good' | 'warn' | 'bad'; export type LatencyPillSize = 'sm' | 'md'; interface LatencyPillProps { ms: number; label?: string; tone?: LatencyPillTone; size?: LatencyPillSize; class?: string; } declare const LatencyPill: import("svelte").Component; type LatencyPill = ReturnType; export default LatencyPill;