import { BaseEntity } from 'typeorm';
import { UserEntity } from '../../user/entities/user.entity';
export declare enum TicketCategory {
    management = "management",
    sale = "sale",
    support = "support",
    financial = "financial"
}
export declare const TicketCategoryList: {
    management: string;
    sale: string;
    support: string;
    financial: string;
};
export declare class TicketEntity extends BaseEntity {
    id: number;
    parentId: number | null;
    userId: string | null;
    title: string | null;
    category: TicketCategory;
    description: string | null;
    isReade: boolean | null;
    isClose: boolean | null;
    sendAdmin: boolean | null;
    image: string;
    createdAt: Date;
    updatedAt: Date;
    isReaded: boolean;
    isClosed: boolean;
    user: UserEntity;
}
