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