import type { ReactElement } from 'react';
import { TypeGroup } from '../../schema/index.js';
import { GraphQLItemProps } from '../types/graphql-item-props.js';
type GraphQLItemPropsWithType = GraphQLItemProps & {
    type: TypeGroup;
};
export declare function GraphQlItem({ name, type, path }: GraphQLItemPropsWithType): ReactElement | null;
export {};
