import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Feature, Region } from '@jbrowse/core/util';
import type { SceneGraph } from '@jbrowse/core/util/layouts';
declare const Box: (props: {
    feature: Feature;
    region: Region;
    config: AnyConfigurationModel;
    featureLayout: SceneGraph;
    bpPerPx: number;
    selected?: boolean;
    topLevel?: boolean;
    colorByCDS: boolean;
}) => import("react/jsx-runtime").JSX.Element | null;
export default Box;
