import { IValueProps } from './ValueProps'; /** * A single value visualization with a label. */ declare const Value: { ({ label, value, size, weight, gap, units, color, }: IValueProps): JSX.Element; defaultProps: { label: any; value: any; weight: string; gap: string; size: string; color: any; }; }; export { Value };