import { AnyObject } from '@loopback/repository'; import { ExternalIdentifierEnabledEntity, UserModifiableEntity } from '@sourceloop/core'; import { OwnerType } from './enums/owner-type.enum'; export declare class Settings extends UserModifiableEntity implements ExternalIdentifierEnabledEntity { id?: string; ownerId: string; ownerType?: OwnerType; settingName?: string; settingValue?: string; extId?: string; extMetadata?: AnyObject; }