import type { NodeData } from '../util';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
export interface InfoArgs {
    target: HTMLElement;
    id: string;
    conf: AnyConfigurationModel;
}
export default function TrackLabel({ data }: {
    data: NodeData;
}): import("react/jsx-runtime").JSX.Element;
