import { DimensionOrMeasure } from '@embeddable.com/core'; import { Theme } from '../theme.types'; export declare const getSubInputValue: (key: DimensionOrMeasure, inputKey: string, metaKey?: string) => any; export type GetThemeFormatter = { string: (key: string) => string; number: (value: number | bigint, options?: Intl.NumberFormatOptions) => string; dateTime: (value: Date, options?: Intl.DateTimeFormatOptions) => string; dimensionOrMeasureTitle: (key: DimensionOrMeasure) => string; data: (key: DimensionOrMeasure, value: any) => string; }; export declare const getThemeFormatter: (theme: Theme) => GetThemeFormatter; //# sourceMappingURL=formatter.utils.d.ts.map