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