import { Identifiable } from './identifiable'; import { BaseEntity } from './base-entity'; export declare class CustomValue implements Identifiable { id: string; field: BaseEntity; value: T; type: string; }