import { auth } from "./auth.js"; import type { StrategyOptions, State } from "./types.js"; export interface ProbotAuth { (options: Parameters[1]): Promise; hook: State["auth"]["hook"]; } export interface createProbotAuth { (options: StrategyOptions): ProbotAuth; VERSION: string; } export declare const createProbotAuth: createProbotAuth;