import { ICreateUserParams, IDeleteUserParams, IGetUserParams, IUpdateUserParams, IUser } from "./types"; /** * create a user * * @param {ICreateUserParams} options * @return {Promise} */ export declare function createUser(options: ICreateUserParams): Promise; /** * get a user * * @param {IGetUserParams} options * @return {Promise} */ export declare function getUser(options: IGetUserParams): Promise; /** * update a user * * @param {IUpdateUserParams} options * @return {Promise} */ export declare function updateUser(options: IUpdateUserParams): Promise; /** * delete a user * * @param {IDeleteUserParams} options * @return {Promise} */ export declare function deleteUser(options: IDeleteUserParams): Promise;