import { TAxiosResponse } from "src/api/interfaces"; import { IFutoiResponse } from "../responseTypes"; export interface IGetFutoiArgsParams { /** * Дата в формате YYYY-MM-DD, или "today" * По умолчанию - today * */ date?: "today" | string; /** * Последний срез за день, "1" - включить * По умолчанию - 0 * */ latest?: 0 | 1; /** * По умолчанию - full */ table_type?: "full" | string; } export declare type TGetFutoi = ( /** query-params */ params?: IGetFutoiArgsParams) => Promise>;