import type { EffectRemoteCommandCall, Pending } from "./types.js"; type EffectRemoteCommandAdapter = ((input: undefined extends Input ? Input | void : Input) => EffectRemoteCommandCall) & { readonly pending: number; }; /** Adapts a generated SvelteKit command to SER's Effect-based client ABI. */ export declare function create_remote_command_adapter(native_factory: unknown, decode_payload: (value: unknown) => unknown, _base?: string, pending?: Pending): EffectRemoteCommandAdapter; export {};