export function rectsAtPoint(track: any, x: any, y: any): [];
export default Annotations1dTrack;
declare class Annotations1dTrack extends BedLikeTrack {
    constructor(context: any, options: any, isVertical: any);
    /**
     * @param  {x} x position of the evt relative to the track
     * @param  {y} y position of the evt relative to the track
     */
    click(x: any, y: any): {
        type: string;
        event: null;
        payload: [];
    };
}
import BedLikeTrack from './BedLikeTrack';
