import { ReactNode } from 'react'; declare type ClientOnlyProps = { children: ReactNode; }; export declare const ClientOnly: ({ children }: ClientOnlyProps) => import("react/jsx-runtime").JSX.Element | null; export {};