import PropTypes from "prop-types"; import * as React from "react"; export interface NoSsrProps { /** The content of the component. (in CSR) */ children?: React.ReactNode; /** The content of the component. (in SSR) */ fallback?: React.ReactNode; } declare const NoSsr: { (props: NoSsrProps): JSX.Element; propTypes: { children: PropTypes.Requireable; fallback: PropTypes.Requireable; }; }; export default NoSsr;