import type { GraphQLESLintRule } from '../types';
declare const ROOT_TYPES: ('mutation' | 'subscription')[];
declare type NoRootTypeConfig = {
disallow: typeof ROOT_TYPES;
};
declare const rule: GraphQLESLintRule<[NoRootTypeConfig]>;
export default rule;