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

import type { ParsedCVote, Version } from "../types/internal";
import type { SignedCIP36VoteData } from "../types/public";
import type { Interaction } from "./common/types";
declare export function signCVote(
  version: Version,
  cVote: ParsedCVote
): Interaction<SignedCIP36VoteData>;
