import { GraphQLESLintRule } from '../types';
declare type SelectionSetDepthRuleConfig = {
    maxDepth: number;
    ignore?: string[];
};
declare const rule: GraphQLESLintRule<[SelectionSetDepthRuleConfig]>;
export default rule;
