import { type DrizzleExecutor } from "../drizzle.js"; /** * Persists one authOidcStates callback bundle containing the provider, PKCE verifier, nonce, redirect URI, and ten-minute expiry. * Keeping those correlated values in one row gives consumption one authoritative state lookup while callers remain responsible for generating their secrets. */ export declare function oidcStateCreate(executor: DrizzleExecutor, state: string, provider: string, verifier: string, nonce: string, redirectUri: string): Promise; //# sourceMappingURL=oidcStateCreate.d.ts.map