import * as probot from 'probot'; export interface Config { diff?: boolean; schema: SchemaPointer; } export interface SchemaPointer { ref: string; path: string; } export default function handleProbot(app: probot.Application): void; export declare function handleAction({ context, owner, repo, ref, action, }: { context: probot.Context; owner: string; repo: string; ref: string; action: string; }): Promise;