import { Context, IUser } from ".."; export declare const USER_SERVICE = "UserService"; export interface UserService { get(context: Context, userId: string): Promise; create(context: Context, user: IUser): Promise; }