import * as Effect from 'effect/Effect'; import { type ConnectCallbackResult, FailedToParseAuthCallbackUrl } from '../types.js'; type ParseCallbackUrlParams = { ciphertext: string; nonce: string; storedNonce: string; storedExpiry: number; storedSecretKey: string; storedPublicKey: string; }; export declare const parseCallbackParams: ({ ciphertext, nonce, storedNonce, storedExpiry, storedSecretKey, storedPublicKey, }: ParseCallbackUrlParams) => Effect.Effect; export {}; //# sourceMappingURL=parse-callback-params.d.ts.map