import IEntity from "../interfaces/entity";
import type Model from "../model";
import { Multilang, TAttribute, TAttributeDescription } from "../types";
export default class Attribute implements IEntity {
    private model;
    private attributeGroupId;
    private _id?;
    constructor(model: Model, attributeGroupId: number, _id?: number | undefined);
    data: Partial<TAttribute>;
    description: Multilang<TAttributeDescription>;
    get id(): number | undefined;
    setData(newData: Partial<TAttribute>): this;
    setDescription(description: Partial<TAttributeDescription>): this;
    insert(): Promise<this>;
    update(): Promise<this>;
    delete(): Promise<this>;
}
