import { type DynamicContext } from 'ag-charts-core';
import type { ChartRegistry } from '../../module/moduleContext';
export declare class FontManager {
    private readonly ctx;
    private observers;
    constructor(ctx: DynamicContext<ChartRegistry>);
    updateFonts(fonts?: Set<string>): void;
    destroy(): void;
    private loadFonts;
    private observeFontStatus;
}
