import { SDK_Base } from '../base';
import { SDK_Owners_List } from './list';
import { SDK_Owners_GetById } from './getById';
import { SDK_Context } from '../client';
import { SDK_Owner_Update } from './update';
import { SDK_UpdateOwner_Body_Dto } from './update/types';
export declare class SDK_Owners extends SDK_Base {
    constructor(context: SDK_Context);
    get list(): SDK_Owners_List;
    getById(ownerId: number): SDK_Owners_GetById;
    update(ownerId: number, payload?: SDK_UpdateOwner_Body_Dto): SDK_Owner_Update;
}
