export interface DisplayValue {
text: string;
numeric: number;
color?: string;
title?: string;
fontSize?: string;
}
export declare type DecimalCount = number | null | undefined;
export interface DecimalInfo {
decimals: DecimalCount;
scaledDecimals: DecimalCount;
}