interface userParams { userId: string; } interface sessionParams { user_id: string; session: string; } interface UserCreditsParams { userId: string; website_id: string; } export declare class UserManager { private backendBaseUrl; private preprodBackendBaseUrl; private storage; constructor(environment?: 'production' | 'preproduction'); private init; checkUserSubscription(params: userParams): Promise; checkUserLinkedStatus(params: userParams): Promise; getAlias(params: userParams): Promise; getUserCredits(params: UserCreditsParams): Promise; checkSession(params: sessionParams): Promise; } export default UserManager; //# sourceMappingURL=user.d.ts.map