import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types'; import { PublicLongEchoOptions, LongMessage } from './index.typings.js'; declare function publicLongEcho$1(httpClient: HttpClient): PublicLongEchoSignature; interface PublicLongEchoSignature { /** * echo given arg1 and arg2 */ (options?: PublicLongEchoOptions): Promise>; } declare const publicLongEcho: MaybeContext & typeof publicLongEcho$1>; export { LongMessage, PublicLongEchoOptions, publicLongEcho };