import { type PropsWithChildren, type ReactNode } from "react";
type ClientOnlyProps = PropsWithChildren & {
    fallback?: ReactNode;
};
declare const ClientOnly: ({ children, fallback }: ClientOnlyProps) => any;
export default ClientOnly;
