import { Application } from "probot";
import { WatchStore, LockStore } from "./store";
export declare function match(auto: string | undefined, ref: string): boolean;
/**
 * Wires up automatic deployments for the `auto_deploy_on` configuration
 * variable  in the deploy.yml.
 */
export declare function auto(app: Application, lockStore: LockStore, watchStore: WatchStore): void;
