import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; interface DefaultProductRedirectProps { /** * Rendered while the persisted store is hydrating from localStorage. * Defaults to `null`. Pass a skeleton for a smoother cold-start paint. */ loadingFallback?: React.ReactNode; } /** * Cold-start `/` → tenant default product dashboard (falls back to Prism). * Mount as the `element` of the root `/` route in your router. */ declare function DefaultProductRedirect({ loadingFallback, }?: DefaultProductRedirectProps): react_jsx_runtime.JSX.Element; export { DefaultProductRedirect, type DefaultProductRedirectProps };