import { TSS_SERVER_FUNCTION } from '@tanstack/start-client-core'; import { ServerFn } from '#tanstack-start-server-fn-manifest'; export type SsrRpcImporter = () => Promise; export declare const createSsrRpc: (functionId: string, importer?: SsrRpcImporter) => ((...args: Array) => Promise) & { url: string; functionId: string; [TSS_SERVER_FUNCTION]: boolean; };