/**
 * Flowtype definitions for signMessage
 * Generated by Flowgen from a Typescript Definition
 * Flowgen v1.21.0
 * @flow
 */

import type { ParsedMessageData } from "../types/internal";
import type { SignedMessageData, Version } from "../types/public";
import type { Interaction } from "./common/types";
declare export function signMessage(
  version: Version,
  msgData: ParsedMessageData
): Interaction<SignedMessageData>;
