import { Entity } from './entity'; export declare class ValorIngredienteAdicional { _id: string; nome?: string; descricao?: string; preco?: number; _entry?: string; } export declare class ItemIngredienteAdicionalProduto { _id: string; nome: string; valor: number; } export declare class IngredienteAdicionalProduto { nome: string; quantidade: number; itens: Array; permite_repeticao?: boolean; } export declare class IngredienteAdicional extends Entity { nome: string; preco: number; _entry?: string; constructor(json?: any, generateId?: boolean); }