import { StringifiedType, TKeyArgs } from "@oraichain/common-types";
import TKey from "@oraichain/core";
declare class ThresholdKey extends TKey {
constructor(args?: TKeyArgs);
static fromJSON(value: StringifiedType, args?: TKeyArgs): Promise<ThresholdKey>;
}
export default ThresholdKey;