import { GraphQLSchema, Source } from 'graphql'; import { ActionResult } from './types'; export declare function diff({ path, schemas, sources, }: { path: string; schemas: { old: GraphQLSchema; new: GraphQLSchema; }; sources: { old: Source; new: Source; }; }): Promise;