import { ApiRequest, ApiResponse } from "@gongt/ts-stl-library/request/protocol"; import { ERequestType } from "@gongt/ts-stl-library/request/request"; import { IUserDataNormalizedClient, IUserProfileBase } from "../define"; export declare const GetUserProfileUrl = "/get_user_profile"; export declare const GetUserProfileMethod: ERequestType; export interface GetUserProfileRequest extends ApiRequest { userId?: string; email?: string; } export interface GetUserProfileResponse extends ApiResponse { user: IUserDataNormalizedClient; }