import { Instruction } from './instruction.type'; export declare type Recipe = { name: string; ingredients?: string[]; instructions: Instruction[]; }; //# sourceMappingURL=recipe.type.d.ts.map