import { AccountKeyType } from "./const.js"; import { WeightedPublicKey } from "../field/index.js"; export declare const getWeightedPublicKeyRLP: (tupleOrObject: any) => WeightedPublicKey; export declare const convertKeysToRLP: ({ key, keys, type, threshold }: { type: AccountKeyType; key?: string; keys?: string[] | object[]; threshold?: number; }) => string; export declare const GetHexlifyRLP: (type: AccountKeyType, rawRLP: string) => string; export declare const decodeObjectFromRLP: (rlp: string) => { type: AccountKeyType; key?: string; threshold?: number; keys?: object[]; };