import { Message } from '../../../../constants'; /** * Creates a deepstream message string, based on the * provided parameters */ export declare const getMessage: (message: Message, isAck?: boolean) => string; /** * Converts a serializable value into its string-representation and adds * a flag that provides instructions on how to deserialize it. * * Please see messageParser.convertTyped for the counterpart of this method */ export declare const typed: (value: any) => string;