import { PaymentGateway, PaymentGatewayByIdRequestType, UpdatePaymentGatewayRequestType } from './types'; import { AxiosInstance } from 'axios'; export default class PaymentGateways { private readonly client; constructor(client: AxiosInstance); getById({ id, }: PaymentGatewayByIdRequestType): Promise; list(): Promise<{ data: PaymentGateway[]; count: number; totalPages: number; }>; updateById({ id, data, }: UpdatePaymentGatewayRequestType): Promise; }