import { LabelSet } from '@parca/client'; import { NumberDuo } from '../../utils'; import { DataPoint } from './SamplesGraph'; export type { DataPoint } from './SamplesGraph'; interface Props { loading?: boolean; cpus: LabelSet[]; data: DataPoint[][]; selectedTimeframe: { labels: LabelSet; bounds: NumberDuo; } | null; onSelectedTimeframe: (labels: LabelSet, bounds: NumberDuo | undefined) => void; width?: number; bounds: NumberDuo; stepMs: number; } export declare const SamplesStrip: ({ loading, cpus, data, selectedTimeframe, onSelectedTimeframe, width, bounds, stepMs, }: Props) => JSX.Element; //# sourceMappingURL=index.d.ts.map