import { FC } from "react"; interface ClientOnlyProps { placeholder?: JSX.Element; } /** * A component that prevents server side rendering of its' children. Optionally accepts a `placeholder` prop which will be rendered in place of the children on the server. */ export declare const ClientOnly: FC; export {};