import type { Address } from "viem"; export type GetUserProfileParams = { httpUrl: string; waypointToken: string; }; export type GetUserProfileResult = { address: Address; updatedAt: number; uuid: string; }; export declare const getUserProfile: (params: GetUserProfileParams) => Promise;