import type { BuildInput } from 'rapiq'; import type { ClientDriverInstance } from 'hapic'; import type { User } from './types'; import type { CollectionResourceResponse, DomainAPI, SingleResourceResponse } from '../types-base'; export declare class UserAPI implements DomainAPI { protected client: ClientDriverInstance; constructor(client: ClientDriverInstance); getMany(options?: BuildInput): Promise>; getOne(id: User['id'], options?: BuildInput): Promise>; delete(id: User['id']): Promise>; create(data: Partial): Promise>; update(id: User['id'], data: Partial & { password_repeat?: User['password']; }): Promise>; } //# sourceMappingURL=api.d.ts.map