import { type ReactNode } from "react"; type Props = { butNotIf?: boolean; children: ReactNode; }; export declare function OnlyClientSide(props: Props): import("react/jsx-runtime").JSX.Element | null; export {};