import { AbstractTransactionEntity } from './base.entities'; export declare const HermesPointChangeEventKeys: { pointsChange: string; }; declare const PointExchange_base: { new (...args: any[]): { profileId?: string; profile?: import("../core/auth").UserProfile; hasId(): boolean; save(options?: import("typeorm").SaveOptions): Promise; remove(options?: import("typeorm").RemoveOptions): Promise; softRemove(options?: import("typeorm").SaveOptions): Promise; recover(options?: import("typeorm").SaveOptions): Promise; reload(): Promise; }; } & typeof AbstractTransactionEntity; /** * UserPointChangeRecord */ export declare class PointExchange extends PointExchange_base { type: string; body: any; } export {};