/** * Oxide-branded server-action wrapper. * * Lives in its own module so `@ilha/router/vite` / the pages plugin can load * frame helpers without resolving the optional `oxidejs` peer. */ import type { SnapshotValue } from "./snapshot"; /** Brand an exported server action with its generated RPC transport key. */ export declare const __ilhaServerAction: (key: string, fn: (...args: A) => R | Promise) => import("oxidejs").ServerActionHandle>>;