import { GraphQLClient } from 'graphql-request'; import { WorkerSchedule } from '@anthor/entities-types'; import { BaseService, RequestOptions } from '../base/BaseService'; import { ReserverWorkerScheduleInput } from './Inputs'; export declare class WorkerScheduleService extends BaseService> { constructor(anthorApi: GraphQLClient); reserveWorkerSchedule(variables: ReserverWorkerScheduleInput, options?: RequestOptions): Promise; }