/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface ILocaleService { readonly beanName: 'localeSvc'; getLocaleTextFunc(): LocaleTextFunc; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export type LocaleTextFunc = (key: TKey, defaultValue: string, variableValues?: string[]) => string;