import { SDK_UnitModel } from 'sdk/models/unit.model';
export declare class SDK_GetUnitById_Param_Dto {
    unitId: number;
}
export type SDK_GetUnitById_Body_IncluededFieldsType = 'utilitiesConfig' | 'utilitiesTenantResponsibility';
export declare class SDK_GetUnitById_Body_Dto {
    included?: SDK_GetUnitById_Body_IncluededFieldsType[];
}
export declare class SDK_GetUnitById_Response {
    unit?: SDK_UnitModel | null;
    message?: string;
}
