import './Argument.css'; import { GraphQLArgument, GraphQLNamedType } from 'graphql/type'; interface ArgumentProps { arg: GraphQLArgument; filter: string | null; expanded: boolean; onTypeLink: (type: GraphQLNamedType) => void; } export default function Argument(props: ArgumentProps): import("react/jsx-runtime").JSX.Element; export {};