import { type SsoInternalClientOptions, type SsoCacheStats } from './client'; export type SsoInternalPreflightOptions = SsoInternalClientOptions & { verifyToken?: string; }; export type SsoInternalPreflightResult = { cache: SsoCacheStats; token?: { valid: boolean; userId?: string; expiresAt?: number; }; }; export declare function runSsoInternalPreflight(options: SsoInternalPreflightOptions): Promise; //# sourceMappingURL=preflight.d.ts.map