import { BaseEntity } from 'typeorm';
import { AttributeOptionEntity } from './attribute-option.entity';
export declare class AttributeEntity extends BaseEntity {
    id: number;
    name: string | null;
    displayOrder: number | null;
    deleted: boolean | null;
    createdAt: Date;
    updatedAt: Date;
    attributeOptions: AttributeOptionEntity[];
}
