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