export { serializeTelefunctionArguments }; type CallContext = { telefuncFilePath: string; telefunctionName: string; telefunctionArgs: unknown[]; telefuncUrl: string; }; declare function serializeTelefunctionArguments(callContext: CallContext): string | FormData;