import type { ReactNode } from 'react'; interface Props { children: ReactNode; [x: string]: any; } export declare function ClientOnly({ children, ...delegated }: Props): import("react/jsx-runtime").JSX.Element | null; export {};