import type { Knex } from "knex";
export interface PatAuthResult {
    accountId: string;
    email: string;
}
export declare function authenticateWithPat(cn: Knex, token: string): Promise<PatAuthResult>;
