import { type Ref } from 'vue'; import type { SparklineDataset, SparklineType } from '../types'; export default function useSparklineSync({ chartKey, datasets, groupKey, minStamp, maxStamp, minCount, maxCount, renderPoints, type, }: { chartKey?: string; datasets: SparklineDataset[]; groupKey?: string; minStamp?: number; maxStamp?: number; minCount?: number; maxCount?: number; renderPoints?: number; type: SparklineType; }): { syncedGroupSizeMs: Ref; syncedMinStamp: Ref; syncedMaxStamp: Ref; syncedMinCount: Ref; syncedMaxCount: Ref; syncedRenderPoints: Ref; syncedChartDatasets: Ref; backgroundColor?: string; fill?: boolean; }>>; }; //# sourceMappingURL=useSparklineSync.d.ts.map