import * as react from 'react'; import { ReactNode } from 'react'; /** * A wrapper component that prevents its children from rendering on the server (SSR). * It waits until the component is mounted on the client before rendering them. * * @param props - The component props. * @param props.children - The children components to render on the client. * @returns The children components on the client, or null on the server. */ declare function NoSSR({ children }: { children: ReactNode; }): react.JSX.Element | null; export { NoSSR as default };