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