import React from 'react'; declare type DashboardValueProps = { align?: 'left' | 'center' | 'right'; aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; id?: string; statChange?: { change?: 'increase' | 'decrease' | 'neutral'; value?: string | number; }; statLabel?: string; statValue?: { unit?: string; value?: string | number; }; }; declare const DashboardValue: (props: DashboardValueProps) => React.ReactElement; export default DashboardValue;