interface DashboardBoxProps { title?: string; amount?: number; change?: number; changeDirection?: "up" | "down" | "attachMoney"; comparedTo?: string; } export declare const DashboardBox: ({ title, amount, changeDirection, }: DashboardBoxProps) => import("react/jsx-runtime").JSX.Element; export default DashboardBox;