import type { SignalComponentDef } from './signals/component.js'; /** * Server-side stub for a `'use client'` component. Compiler-ssr emits * `export const Foo = __clientOnlyStub("Foo")` for each named export of * a client-only module so SSR never imports the client's browser-only * dependencies. The stub renders nothing on the server; the real module * loads and hydrates on the client. */ export declare function __clientOnlyStub(name: string): SignalComponentDef; //# sourceMappingURL=internal.d.ts.map