import './TypeLink.css'; import { GraphQLNamedType } from 'graphql/type'; interface TypeLinkProps { type: GraphQLNamedType; onClick: (type: GraphQLNamedType) => void; filter?: string | null; } export default function TypeLink(props: TypeLinkProps): import("react/jsx-runtime").JSX.Element; export {};