export interface InjectServerFnIdsResult { code: string; ids: { name: string; id: string; }[]; } /** * Server/SSR-build transform: injects the derived `id` into each * `export const NAME = serverFn(config, handler)` so the function registers * under the same opaque id the client proxy dispatches to. Unlike the client * scrub this keeps the handler and every other statement intact — it only edits * the config object — so the server module still runs the real implementation. * * Returns `null` when the module defines no server function. */ export declare function injectServerFnIds(code: string, fileId: string): InjectServerFnIdsResult | null;