import type { CollectionChartDefinition } from './types'; import type { Caller, Chart, CollectionSchema, CompositeId } from '@forestadmin/datasource-toolkit'; import { CollectionDecorator } from '@forestadmin/datasource-toolkit'; export default class ChartCollectionDecorator extends CollectionDecorator { private charts; addChart(name: string, definition: CollectionChartDefinition): void; renderChart(caller: Caller, name: string, recordId: CompositeId, parameters?: Record): Promise; protected refineSchema(subSchema: CollectionSchema): CollectionSchema; } //# sourceMappingURL=collection.d.ts.map