import { BaseEntity } from '../entities/base-entity'; export declare class Namebook extends BaseEntity { id?: any; displayName?: string; constructor({ id, displayName, }?: { id?: any; displayName?: string; }); static schema: { readonly id: { readonly type: "any"; }; readonly displayName: { readonly type: "string"; }; }; static readonly typeName: "Namebook"; }