import React from 'react';
import type { GraphQLArgument } from 'graphql';
interface InlineArgsListProps {
    args?: ReadonlyArray<GraphQLArgument>;
    size?: 'base' | 'lg';
}
export declare function InlineArgsList({ args, size }: InlineArgsListProps): React.JSX.Element | null;
export {};
