import './index.scss'; type Size = 'big' | 'small'; interface CardProps { title: string; value: number; type: 'sider' | 'full' | 'null'; width: number; size: Size; fontSize: Size; siderColor: string; singleColor: string; titleColor: string; valueColor: string; } export interface IndicatorCardProps extends CardProps { position: string; maxHeight: number | null; bubblePosition: 'bottom' | 'right' | 'top' | 'left'; } declare const _default: any; export default _default;