import { AbstractModuleInstance, type DynamicContext } from 'ag-charts-core';
import type { Formatter, MessageFormatterParams } from 'ag-charts-types';
import type { ChartRegistry } from '../module/moduleContext';
export declare class Locale extends AbstractModuleInstance {
    private readonly ctx;
    localeText: Record<string, string> | undefined;
    getLocaleText: Formatter<MessageFormatterParams> | undefined;
    constructor(ctx: DynamicContext<ChartRegistry>);
}
