import { GraphQLSchema } from 'graphql';
import { Reference } from '../types';
export declare function validate(schema: GraphQLSchema, reference: Reference): Error | null;
export declare class ValidationError extends Error {
    constructor(errors: Error[]);
}
