import { ProductAttributeMappingEntity } from 'src/modules/product/entities/product-attribute-mapping.entity';
import { BaseEntity } from 'typeorm';
import { AttributeEntity } from './attribute.entity';
export declare class AttributeOptionEntity extends BaseEntity {
    id: number;
    specificationAttributeId: number | null;
    name: string | null;
    displayOrder: number | null;
    createdAt: Date;
    updatedAt: Date;
    productAttributeOptionMappings: ProductAttributeMappingEntity[];
    attribute: AttributeEntity;
}
