import React from 'react';
import { TypeGroup } from '../../schema';
export interface GraphQlItemProps {
    name: string;
    type: TypeGroup;
}
export declare function GraphQlItem({ name, type }: GraphQlItemProps): React.JSX.Element;
