import { BaseEntity } from "./BaseEntity.js"; export declare class Badge extends BaseEntity { static entityType: string; static entityTag: string; static SCHEMA_CONSTANTS: string[]; static ADD_BLOCKS: Map; static UPDATE_BLOCKS: Map; defaultFields: Record; removeFields: string[]; _add: (payload: Record) => Promise; _update: (payload: Record) => Promise; getOrganizations(): Promise; getProjects(): Promise; getEvents(): Promise; getPois(): Promise; getBadgesIssuer(): Promise; getNews(): Promise; getSubscribers(): Promise; project(): Promise; poi(): Promise; event(): Promise; badge(): Promise; news(): Promise; form(): Promise; }