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