import type { Message } from './types.ts'; /** * Stringify a {@link Message} using its syntax representation. * Parsing and stringifying a message will not necessarily produce * exactly the same syntax representation. * * @category Message Data Model */ export declare function stringifyMessage(msg: Message): string;