export class ParentEntity {
    readonly entity: number

    static from(entity: number): ParentEntity

    toJSON(): any

    fromJSON(j: any): void

    static readonly typeName: string
}