import { GraphQLClient } from 'graphql-request'; import { PenaltyOccurrence } from '@anthor/entities-types'; import { BaseService, RequestOptions } from '../base/BaseService'; import { RecordIdAndRecordResponse } from '../base/Responses'; import { CreateWorkerPenaltyInput } from './Inputs'; export declare class PenaltyOccurrenceService extends BaseService> { constructor(anthorApi: GraphQLClient); /** * @FIXME Wrong return */ createWorkerPenalty(variables: CreateWorkerPenaltyInput, options?: RequestOptions): Promise>; }