import { type GIGraphData } from '@antv/gi-sdk'; import React from 'react'; import type { Aggregation, FieldType, Speed, TimeGranularity } from '../types'; export interface TimebarControlType { aggregation: Aggregation; graphData: GIGraphData; speed: Speed; timeField: string; timeGranularity: TimeGranularity; type: FieldType; yField?: string; playMode: 'filter' | 'highlight' | 'show-hide'; defaultTimeLength?: 'all' | 'day' | 'month' | 'year'; } declare const TimebarControl: React.FC; export default TimebarControl;