import { IntrospectionTypeRef } from 'graphql'; export default function getGraphqlTypeString({ type, capitalizeName, onlyName, }: Props): any; interface Props { type: IntrospectionTypeRef; capitalizeName?: boolean; onlyName?: boolean; } export {};