import { GraphQLESLintRule } from '../types';
export declare type StrictIdInTypesRuleConfig = {
    acceptedIdNames?: string[];
    acceptedIdTypes?: string[];
    exceptions?: {
        types?: string[];
        suffixes?: string[];
    };
};
declare const rule: GraphQLESLintRule<[StrictIdInTypesRuleConfig]>;
export default rule;
