export type RecipeMain = (args: string[]) => Promise; export type RecipeFile = { id: string; path: string; description: string; main: RecipeMain; }; /** * Lists runnable TypeScript recipe entries. * Expects: each entry exports `main(args)` and maps to a source file path. */ export declare const RECIPE_FILES: readonly RecipeFile[]; //# sourceMappingURL=_recipes.d.ts.map