export declare class Tag {
    readonly id: string;
    organizationId: string;
    name: string;
    createdAt: Date;
    updatedAt: Date;
    constructor(id: string, organizationId: string, name: string, createdAt: Date, updatedAt: Date);
    updateName(newName: string): void;
}
//# sourceMappingURL=Tag.d.ts.map