import { GraphQLClient } from 'graphql-request'; import { Worker } from '@anthor/entities-types'; import { BaseService, RequestOptions } from '../base/BaseService'; import { CreateWorkerBlockManyInput, CreateWorkerUserInput, WorkersByGeoNearInput } from './Inputs'; export declare class WorkerService extends BaseService> { constructor(anthorApi: GraphQLClient); workersByGeoNear(variables: WorkersByGeoNearInput, options?: RequestOptions): Promise; createWorkerBlockMany(variables: CreateWorkerBlockManyInput, options?: RequestOptions): Promise; createWorkerAndUser(variables: CreateWorkerUserInput, options?: RequestOptions): Promise; }