import type { TextProps } from '../../jsx'; export interface ItemValueProps extends TextProps { indexes: number[]; value: number; formatter?: (value: number) => string | number; } export declare const ItemValue: ({ indexes, value, formatter, ...props }: ItemValueProps) => any;