export declare type public_message_create_payload = {
    /**
     * Content for the message
     */
    content?: string;
    /**
     * Temporary identifier which will be passed back via websockets
     */
    echo_id?: string;
};
