import React from 'react';
import type { GraphQLArgument } from 'graphql';
import type { FieldView } from '../../definition/components/FieldView';
interface ArgumentsProps {
    args: ReadonlyArray<GraphQLArgument>;
    renderField?: typeof FieldView;
    fieldExpandLevel?: number;
    title?: string;
}
export declare const Arguments: React.NamedExoticComponent<ArgumentsProps>;
export {};
