import { product } from '@prisma/client';
export declare class ProductEntity implements product {
    id: number;
    title: string;
    description: string;
    createdAt: Date;
    updatedAt: Date;
    categoryId: number;
    brand: string;
    brandId: string;
    cost: number;
    modifier: number;
    price: number;
    syncId: string | null;
    syncState: string;
    syncEnabled: boolean;
    syncLastUpdated: Date | null;
    syncLastSynced: Date | null;
    syncProviderId: number | null;
}
