import { NumberDuo } from '../../../utils'; export interface DataPoint { timestamp: number; value: number; sampleCount?: number; } interface DragState { stripIndex: number; startX: number; currentX: number; } interface Props { width: number; height: number; marginLeft?: number; marginRight?: number; marginTop?: number; marginBottom?: number; fill?: string; data: DataPoint[]; selectionBounds?: NumberDuo | undefined; setSelectionBounds: (newBounds: NumberDuo | undefined) => void; stepMs: number; onDragStart?: (startX: number) => void; dragState?: DragState; isAnyDragActive?: boolean; timeBounds?: NumberDuo; } export declare const SamplesGraph: ({ data, height, width, marginLeft, marginRight, marginBottom, marginTop, fill, selectionBounds, setSelectionBounds, stepMs, onDragStart, dragState, isAnyDragActive, timeBounds, }: Props) => JSX.Element; export {}; //# sourceMappingURL=index.d.ts.map