import Long from 'long'; import { Any } from '../../../google/protobuf/any'; import _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 { $type: 'cosmos.crypto.multisig.LegacyAminoPubKey'; threshold: number; publicKeys: Any[]; } export declare const LegacyAminoPubKey: { $type: "cosmos.crypto.multisig.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; })[] & { [K_1 in Exclude]: never; }) | undefined; } & { [K_2 in Exclude]: never; }>(object: I): LegacyAminoPubKey; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | '$type'>]: never; }; export {};