import { PropsWithChildren } from 'react'; /** * Custom StrictMode component that enables detection via useStrictMode(). * * Use this instead of React.StrictMode to allow Storion to properly handle * double rendering and effect calling in strict mode. */ export declare const StrictMode: import('react').MemoExoticComponent<({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element>; /** * Hook to detect if component is rendered inside StrictMode. * * @returns true if inside Storion's StrictMode, false otherwise */ export declare function useStrictMode(): boolean; //# sourceMappingURL=strictMode.d.ts.map