import { TypeGraph } from '../../graph/type-graph'; interface RootSelectorProps { typeGraph: TypeGraph; onChange: (rootType: string) => void; } export default function RootSelector(props: RootSelectorProps): import("react/jsx-runtime").JSX.Element; export {};