import type { SchnorrSigner } from "../signers";
import type { Key, PublicNonces, SignatureOutput } from ".";
export interface MultiSigTx {
    signers: SchnorrSigner[];
    combinedPubKey: Key;
    signatures: SignatureOutput[];
}
export type SignersSignatures = Record<string, SignatureOutput>;
export type SignersNonces = Record<string, PublicNonces>;
export type SignersPubKeys = Record<string, Key>;
