/** * Given a raw URL, form prefill values, and extension data values, return the URL with the prefill values and extension data values added as query parameters. * @param rawUrl * @param formPrefillValues - The form prefill values to add to the URL. * @param extensionDataValues - The extension data values to add to the URL. * @returns The URL with the prefill values and extension data values added as query parameters. */ export declare const tryResolveEmbeddedContentUrl: (rawUrl?: string, formPrefillValues?: Record, extensionDataValues?: Record) => string | undefined; /** * Resolve the full iframe URL, taking into account the embedded content URL and the auth URL. * @param rawUrl - The raw URL to resolve. * @param embedAuthUrl - The embed auth URL to resolve. * @param authPassthroughParams - The auth passthrough params to add to the URL. * @param formPrefillValues - The form prefill values to add to the URL. * @param extensionDataValues - The extension data values to add to the URL. * @returns The full iframe URL. */ export declare const tryResolveFullIframeUrl: (rawUrl?: string, embedAuthUrl?: string, authPassthroughParams?: URLSearchParams, formPrefillValues?: Record, extensionDataValues?: Record) => string | undefined; //# sourceMappingURL=urlResolution.d.ts.map