import { type Account } from "./types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Resolves an authentication account by the exact OIDC provider and subject pair stored in oidcIdentities. * Keeping provider identity lookup independent of account eligibility lets the authentication flow apply activation, ban, and profile policy explicitly afterward. */ export declare function accountFindOidc(executor: DrizzleExecutor, provider: string, subject: string): Promise; //# sourceMappingURL=accountFindOidc.d.ts.map