import * as react from 'react'; type ClientOnlyProps = { children: () => React.ReactNode; fallback?: React.ReactNode; }; /** * Renders children only after the client has hydrated. * Useful for avoiding hydration mismatches with browser-only APIs. * * Children is a render function (not a ReactNode) to avoid * executing client-only code during SSR. */ declare const ClientOnly: ({ children, fallback }: ClientOnlyProps) => react.ReactNode; export { ClientOnly };