import { JSX } from 'react'; import { PropsWithChildren } from 'react'; /** * This wrapper provides a fix to hydration errors caused by client components * that rely on redux state being pre-rendered on the server */ export default function ClientSideOnly({ children, fallback, }: { fallback?: JSX.Element; } & PropsWithChildren): JSX.Element | null; //# sourceMappingURL=client-side-only.component.d.ts.map