/** * Copyright (c) 2023 The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { IStatsGrossVolumeResponse, IStatsGrossVolumeTodayResponse, IStatsNewCustomersResponse, IStatsPaymentsStatusResponse, IStatsSuccessfulPaymentsResponse } from '../types'; export default class Stats { protected static adapter: any; static NetVolume(start_at?: string, end_at?: string): Promise>; static NewCustomers(start_at?: string, end_at?: string): Promise>; static SuccessfulPayments(start_at?: string, end_at?: string): Promise>; static PaymentsStatus(): Promise>; static GrossVolume(start_at?: string, end_at?: string): Promise>; static GrossVolumeToday(): Promise>; }