import { FromSchema } from 'json-schema-to-ts'; import { GraphQLESLintRule } from '../../types.cjs'; import 'eslint'; import 'estree'; import 'graphql'; import 'graphql-config'; import '../../estree-converter/types.cjs'; import '../../siblings.cjs'; import '@graphql-tools/utils'; declare const schema: { readonly type: "array"; readonly maxItems: 1; readonly items: { readonly type: "object"; readonly additionalProperties: false; readonly properties: { readonly ignoredFieldSelectors: { readonly type: "array"; readonly uniqueItems: true; readonly minItems: 1; readonly description: string; readonly items: { readonly type: "string"; readonly pattern: "^\\[(.+)]$"; }; }; }; }; }; type RuleOptions = FromSchema; declare const rule: GraphQLESLintRule; export { type RuleOptions, rule };