import type { ReactElement } from 'react'; import type { GraphQLNamedType, GraphQLEnumValue, GraphQLField } from 'graphql'; import { Field } from '../../schema/index.js'; interface RequiresScopesButtonProps { type?: GraphQLNamedType | GraphQLEnumValue | GraphQLField; field?: Field | GraphQLEnumValue; parentType?: GraphQLNamedType | GraphQLField; isItem?: boolean; } declare function RequiresScopesButtonComponent({ type, field, parentType, isItem }: RequiresScopesButtonProps): ReactElement | null; export declare const RequiresScopesButton: import("react").MemoExoticComponent; export {};