import { ProductCategory } from "../../../enums/product-categories.enum";
import { ProductUOM } from "../../../enums/product-uom.enum";
export declare class ProductDTO {
    id?: string;
    name: string;
    brand: string;
    category: ProductCategory;
    regulationType?: string;
    minimumAge?: number;
    requiresVerification?: boolean;
    isWeighable?: boolean;
    quantity: number;
    weight?: number;
    uom: ProductUOM;
    upc: string;
    sku: string;
}
