import { GraphQLNamedType } from 'graphql/type'; import { TypeGraph } from '../../graph/type-graph'; interface OtherSearchResultsProps { typeGraph: TypeGraph; withinType: GraphQLNamedType | null; searchValue: string; onTypeLink: (type: GraphQLNamedType) => void; onFieldLink: (type: GraphQLNamedType, fieldID: string) => void; } export default function OtherSearchResults(props: OtherSearchResultsProps): import("react/jsx-runtime").JSX.Element; export {};