import { Any, AnySDKType } from "../../../google/protobuf/any"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.crypto.multisig"; /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, * it uses legacy amino address rules. */ export interface LegacyAminoPubKey { threshold: number; publicKeys: Any[]; } /** * LegacyAminoPubKey specifies a public key type * which nests multiple public keys and a threshold, * it uses legacy amino address rules. */ export interface LegacyAminoPubKeySDKType { threshold: number; public_keys: AnySDKType[]; } export declare const LegacyAminoPubKey: { encode(message: LegacyAminoPubKey, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LegacyAminoPubKey; fromJSON(object: any): LegacyAminoPubKey; toJSON(message: LegacyAminoPubKey): unknown; fromPartial, never>)[] & Record, never>) | undefined; } & Record, never>>(object: I): LegacyAminoPubKey; fromSDK(object: LegacyAminoPubKeySDKType): LegacyAminoPubKey; toSDK(message: LegacyAminoPubKey): LegacyAminoPubKeySDKType; };