import * as probot from 'probot'; import { PullRequest } from './helpers/types'; import { FileLoader, ConfigLoader } from './helpers/loaders'; export declare function handleSchemaDiff({ action, context, ref, repo, owner, before, pullRequests, loadFile, loadConfig, }: { action: string; context: probot.Context; owner: string; repo: string; ref: string; pullRequests: PullRequest[]; /*** * The SHA of the most recent commit on ref before the push */ before?: string; loadFile: FileLoader; loadConfig: ConfigLoader; }): Promise;