import { BaseEntity } from '../entities/base-entity'; export declare class PrimengOption extends BaseEntity { label?: string; code?: any; constructor({ label, code, }?: { label?: string; code?: any; }); static readonly typeName: "PrimengOption"; }