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