import type { Aggregation, Selection, TimeGranularity } from '../../types'; export type TimebarChartProps = { className?: string; data: Record[]; xField: string; yField?: string; aggregation: Aggregation; granularity: TimeGranularity; isTimeXField?: boolean; selection?: Selection; onSelection: (start: string, end: string) => void; onReset: () => void; }; export declare const TimebarChart: (props: TimebarChartProps) => JSX.Element;