import { type AuthStatusSnapshot, type LoginFlowState } from '../../auth/index.js'; import type { AuthFlowStateParams, AuthStatusParams } from '../types.js'; type AuthStatusReader = () => Promise; export declare function handleAuthStatus(_params: AuthStatusParams, readStatus?: AuthStatusReader): Promise; export declare function handleAuthFlowState(params: AuthFlowStateParams, readState?: (flowId: string) => LoginFlowState | null): Promise; export {};