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 Segments: (props: {
    region: Region;
    feature: Feature;
    featureLayout: SceneGraph;
    config: AnyConfigurationModel;
    selected?: boolean;
    reversed?: boolean;
    subfeatures?: Feature[];
    children?: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element;
export default Segments;
