import { BusinessObjectIDType } from '../type/business-object-id-type'; export declare class BusinessObject { id: BusinessObjectIDType; getId(): BusinessObjectIDType; setId(value: BusinessObjectIDType): void; hasId(): boolean; getTitleForSearchResult(): string; getDescriptionForSearchResult(): string; getLettersForSearchResult(): string; getShowCheckbox(): boolean; toString(): string; constructor(); }