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