import { ActiveTarget, HitQuery, HitSeries, HitTester } from './types'; export interface BandHitOptions { /** 'x' (vertical bars, default) or 'y' (horizontal bars). */ orientation?: 'x' | 'y'; } export declare class BandCategoryHitTester implements HitTester { private series; readonly kind: "band"; private orientation; constructor(series: HitSeries[], opts?: BandHitOptions); private markToTarget; hit(q: HitQuery): ActiveTarget | null; /** All series at the nearest category (a column slice) for multi-tooltips. */ slice(q: HitQuery): ActiveTarget[]; }