import { ListLiveReplayResponse } from '../model/listLiveReplayResponse'; import { ListSquareAiSearchResponse } from '../model/listSquareAiSearchResponse'; import { ApiClient } from './apiClient'; import { AxiosResponse } from 'axios'; export declare class SquareApi { protected client: ApiClient; constructor(client?: ApiClient); listSquareAiSearch(opts?: { keyword?: string; currency?: string; timeRange?: 0 | 1 | 2 | 3; sort?: 0 | 1; limit?: number; page?: number; }): Promise<{ response: AxiosResponse; body: ListSquareAiSearchResponse; }>; listLiveReplay(opts?: { tag?: string; coin?: string; sort?: 'hot' | 'new'; limit?: number; }): Promise<{ response: AxiosResponse; body: ListLiveReplayResponse; }>; }