import type { EpochCurrentDto } from '../models/EpochCurrentDto'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class EpochService { /** * get current epoch * @returns EpochCurrentDto * @throws ApiError */ static tsEpochControllerGetCurrentEpoch(): CancelablePromise; /** * get epoch from order manager * @returns EpochCurrentDto * @throws ApiError */ static tsEpochControllerRefreshEpoch(): CancelablePromise; }