import { BookType, BusinessObjectType } from '@heduapp/book-objects/business-object'; import { UUID } from '@heduapp/book-objects/business-object/abstract-business-object'; export interface IObjectInfo { uuid: UUID; objectType: BusinessObjectType | string; } export declare function findBookTypes(objectInfo: IObjectInfo): Promise;