import type { Formatter, RichFormatter, TextValue } from 'ag-charts-community'; import { type NormalisedTextOrSegments } from 'ag-charts-core'; interface Ctx { chartService: { context?: unknown; }; } export declare function formatWithContext
(ctx: Ctx, formatter: Formatter
, params: P): TextValue | undefined; export declare function formatWithContext
(ctx: Ctx, formatter: RichFormatter
, params: P): NormalisedTextOrSegments | undefined; export {};