import { LocalizerKeys } from './LocalizerKeys'; export type RenderTextCallbackType = (options: { text: string; key: number; isGroup?: boolean; }) => JSX.Element | string; export type LocalizerType = (key: LocalizerKeys, values?: Array) => string;