import React from 'react'; import cx from 'classnames'; import styles from './SingleValue.module.scss'; export interface Props { /** Override SingleValue styles by adding a className */ className?: Parameters[0]; /** Text shown in the tooltip when hovering over the info icon. Info icon does not show * unless this value is present. */ infoText?: string; /** Text shown below the value */ subtitle?: string; /** Value shown above the value */ title: string; /** Optional value that when present, will appear in a trending section in the bottom right */ trendingValue?: number; /** Value shown in the center of the component */ value: number; } export declare const SingleValue: React.FC; export default SingleValue; export { styles }; //# sourceMappingURL=index.d.ts.map