import { JSX } from 'solid-js';

interface ClientOnlyProps {
    children: JSX.Element;
    fallback?: JSX.Element;
}
declare function ClientOnly(props: ClientOnlyProps): JSX.Element;

export { ClientOnly, type ClientOnlyProps };
