/// export interface Props { type?: "good" | "bad"; direction?: "up" | "down"; text?: string; className?: string; children?: any; } declare const Trend: ({ type, direction, text, children, className }: Props) => JSX.Element; export default Trend;