export type TrendDirection = 'up' | 'down' | 'flat'; export type TrendArrowSize = 'sm' | 'md' | 'lg'; interface TrendArrowProps { direction?: TrendDirection; size?: TrendArrowSize; label?: string; class?: string; } declare const TrendArrow: import("svelte").Component; type TrendArrow = ReturnType; export default TrendArrow;