export { ClientOnly }; import React from 'react'; import type { ReactNode } from 'react'; /** * Render children only on the client-side. * * Children are completely removed and never loaded on the server. * * https://vike.dev/ClientOnly */ declare function ClientOnly({ children, fallback }: { children: ReactNode; fallback?: ReactNode; }): React.JSX.Element;