import { User, UserWithId } from "../../types/user"; import { ForestInstance, ForestService, ServiceConfig } from "../../../src"; export declare const forestInstance: ForestInstance; export declare let userService: UserService; export declare class UserService extends ForestService { constructor(config?: ServiceConfig); getByName: (param: string) => Promise>; isEmailTaken: (param: string) => Promise>; }