import { SlotsType, VNode } from 'vue'; export { ClientOnly }; type Slots = SlotsType<{ default?: () => VNode[]; fallback?: { attrs: Record; }; }>; /** * Render children only on the client-side. * * Children (default slot) are completely removed and never loaded on the server. * * https://vike.dev/ClientOnly */ declare const ClientOnly: import('vue').DefineComponent<{}, () => VNode[] | undefined, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, Slots, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;