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