@gardenfi/garden-book 0.2.3-beta.3 → 0.2.3-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ interface ClientOnlyLottieProps {
2
+ animationData: any;
3
+ loop?: boolean;
4
+ autoplay?: boolean;
5
+ style?: React.CSSProperties;
6
+ }
7
+ export declare const ClientOnlyLottie: ({ animationData, loop, autoplay, style, }: ClientOnlyLottieProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Custom hook that returns true only on the client side
3
+ * Useful for components that need to avoid SSR hydration issues
4
+ */
5
+ export declare const useClientOnly: () => boolean;