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

import type {
  ParsedTransaction,
  Version,
  ParsedTransactionOptions,
} from "../../../types/internal";
import { TransactionSigningMode } from "../../../types/internal";
declare export function serializeTxInit(
  tx: ParsedTransaction,
  signingMode: $Values<typeof TransactionSigningMode>,
  numWitnesses: number,
  options: ParsedTransactionOptions,
  version: Version
): Buffer<ArrayBuffer>;
