import { GraphQLObjectType } from 'graphql';
export declare class FieldDoesNotExistOnType extends Error {
    constructor({ type, fieldName }: {
        type: GraphQLObjectType;
        fieldName: string;
    });
}
