import { Component, ComponentOptions, DefineSetupFnComponent, InjectionKey, SlotsType, VNode } from "vue"; //#region src/app/components/client-only.d.ts declare const clientOnlySymbol: InjectionKey; interface ClientOnlyProps { fallback?: string; placeholder?: string; placeholderTag?: string; fallbackTag?: string; } type ClientOnlySlots = SlotsType<{ default?: () => VNode[]; /** * Specify a content to be rendered on the server and displayed until `` is mounted in the browser. */ fallback?: () => VNode[]; placeholder?: () => VNode[]; }>; declare const ClientOnly: DefineSetupFnComponent; declare function createClientOnly(component: T): Component; //#endregion export { clientOnlySymbol, createClientOnly, ClientOnly as default };