import type { SimpleFeatureSerialized } from '../../util/index.ts';
import type { Descriptors } from '../types.tsx';
import type { IAnyStateTreeNode } from '@jbrowse/mobx-state-tree';
export default function FeatureDetails(props: {
    model: IAnyStateTreeNode;
    feature: SimpleFeatureSerialized;
    depth?: number;
    omit?: string[];
    descriptions?: Descriptors;
    formatter?: (val: unknown, key: string) => React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
