import { SDK_Base } from '../base';
import { SDK_Markets_List } from './list';
import { SDK_Markets_GetById } from './getById';
import { SDK_Context } from '../client';
import { SDK_Market_Update } from './update';
import { SDK_UpdateMarket_Body_Dto } from './update/types';
export declare class SDK_Markets extends SDK_Base {
    constructor(context: SDK_Context);
    get list(): SDK_Markets_List;
    getById(marketId: number): SDK_Markets_GetById;
    update(marketId: number, payload?: SDK_UpdateMarket_Body_Dto): SDK_Market_Update;
}
