import type { APIClient } from '../../@unbounce/http-client'; import type { AppId } from '../../core'; declare type FetchAuthorizeUrlResponse = { location: string; credentials_id: string; }; export declare const fetchAuthorizeUrl: (apiClient: APIClient, appId: AppId, queryParam: string) => Promise; export {};