import type { AuthFlowParams } from '../utils/request-utils.js'; export declare enum StoreReason { NOT_FOUND = "not_found", EXPIRED = "expired" } /** * Wraps PKCE state lookup results with reason metadata. */ export declare class StoreResult { readonly code: string | null; readonly reason: StoreReason | null; readonly authFlowParams?: AuthFlowParams | undefined; private constructor(); static withCode(code: string, authFlowParams?: AuthFlowParams): StoreResult; static notFound(): StoreResult; static expired(): StoreResult; } //# sourceMappingURL=store-result.d.ts.map