import type { AnnotationsConfigProperties } from '../types/annotations-config-properties.js'; /** * Strips render-prop/function fields (`tooltip.template`, per-track and chart-level * `annotationsActions`) from a resolved internal annotations configuration, producing the * JSON-serializable shape returned by `getConfig()` and accepted back through the * `HistogramChartConfig`/`TimeseriesChartConfig` providers. * * Also strips any non-string `symbol` from markers — React elements are not JSON-serializable * and must not appear in the exported payload. */ export declare function getExportableAnnotationsConfig>; annotationsActions?: unknown; }, TAnnotations extends { tracks: TTrack[]; tooltip?: { hidden?: boolean; template?: unknown; }; annotationsActions?: unknown; }>(annotations: TAnnotations | undefined): AnnotationsConfigProperties | undefined; //# sourceMappingURL=get-exportable-annotations-config.d.ts.map