export declare class Product {
    id: number;
    external_id: string;
    name: string;
    image_url: string;
    brand: string;
    price: number;
    size: number;
    size_unit_name: string;
    mid?: number;
    is_active: boolean;
}
export declare class RecipeProduct extends Product {
    common: boolean;
    shared: boolean;
    quantity: number;
    amount: number;
    strategy: string;
    substitute_identifier: string;
    substitute_products_amount: number;
    unit_of_order: string;
}
