import { GraphQLClient } from 'graphql-request'; import { PointsBalanceHistory } from '@anthor/entities-types'; import { BaseService, RequestOptions } from '../base/BaseService'; import { PointsChainBalanceInput, DebitCreditInput, RefundCanceledActivityInput, RefundJobDebitInput } from './inputs'; export declare class PointsBalanceHistoryService extends BaseService> { constructor(anthorApi: GraphQLClient); pointsChainBalance(variables: PointsChainBalanceInput, options?: RequestOptions): Promise; requestMissionDebitPoints(variables: DebitCreditInput, options?: RequestOptions): Promise; RefundCanceledActivity(variables: RefundCanceledActivityInput, options?: RequestOptions): Promise; refundJobDebit(variables: RefundJobDebitInput, options?: RequestOptions): Promise; }