import type { BN } from '@polkadot/util'; import type { Codec } from '../types/index.js'; type SortArg = Codec | Codec[] | number[] | BN | bigint | number | Uint8Array; /** * Sort keys/values of BTreeSet/BTreeMap in ascending order for encoding compatibility with Rust's BTreeSet/BTreeMap * (https://doc.rust-lang.org/stable/std/collections/struct.BTreeSet.html) * (https://doc.rust-lang.org/stable/std/collections/struct.BTreeMap.html) */ export declare function sortAsc(a: V, b: V): number; export declare function sortSet(set: Set): Set; export declare function sortMap(map: Map): Map; export {};