import type { GraphQLOutputType, GraphQLInputType } from 'graphql';
import type { FieldView } from '../../definition/components/FieldView.js';
interface TypeProps {
    type: GraphQLOutputType | GraphQLInputType;
    contrast?: boolean;
    renderField?: typeof FieldView;
    fieldExpandLevel?: number;
}
export declare const TypeView: import("react").NamedExoticComponent<TypeProps>;
export {};
