import { TAttribute } from '@cromwell/core'; import { AttributeValue } from './attribute-value.entity'; import { BasePageEntity } from './base-page.entity'; import { AttributeMeta } from './meta/attribute-meta.entity'; export declare class Attribute extends BasePageEntity implements TAttribute { key?: string | null; title?: string | null; values?: AttributeValue[] | null; type?: 'radio' | 'checkbox' | 'text_input' | null; icon?: string | null; required?: boolean | null; metaRecords?: AttributeMeta[] | null; } //# sourceMappingURL=attribute.entity.d.ts.map