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