1 | import type { RecipeProps } from "./generated/recipes.gen";
|
2 | import type { RecipeKey } from "./use-recipe";
|
3 | import type { SlotRecipeKey } from "./use-slot-recipe";
|
4 | declare const useParentRecipeProps: () => {
|
5 | recipe?: import("./recipe.types").RecipeDefinition;
|
6 | };
|
7 | interface Props<T> {
|
8 | children: React.ReactNode;
|
9 | value: RecipeProps<T>;
|
10 | }
|
11 | declare function RecipePropsProvider<T extends RecipeKey | SlotRecipeKey>(props: Props<T>): import("react/jsx-runtime").JSX.Element;
|
12 | export { RecipePropsProvider, useParentRecipeProps };
|