import { SDK_Base } from '../../base';
import { SDK_Context } from 'sdk/client/client';
import { SDK_Execution } from 'sdk/interfaces/sdk-execution';
import { SDK_GetUnitById_Body_IncluededFieldsType, SDK_GetUnitById_Response } from './types';
export declare class SDK_Units_GetById extends SDK_Base implements SDK_Execution {
    private unitId;
    private includedFields?;
    constructor(ctx: SDK_Context, unitId: number);
    included(fields: SDK_GetUnitById_Body_IncluededFieldsType[]): this;
    execute(): Promise<SDK_GetUnitById_Response>;
    private clonePayload;
    private resetPayload;
}
