import type { OpenIdAuthContext } from '../types/context'; export declare const stringifyContext: ({ caller, state, salt }: OpenIdAuthContext) => string; export declare const parseContext: (jsonData: string) => OpenIdAuthContext;