export { useTelefuncContext }; export { TelefuncSSR }; import type { Telefunc } from '../../node/server/getContext/TelefuncNamespace.js'; declare function TelefuncSSR({ context, children, }: { context?: Telefunc.Context; children: unknown; }): import("react").FunctionComponentElement>; declare function useTelefuncContext(): Telefunc.Context | null;