import { Dictionary } from '@ton/core'; export type ExtraCurrency = { [key: number]: bigint; }; export declare function extractEc(cc: Dictionary): ExtraCurrency; export declare function packEc(ec: Iterable<[number, bigint]>): Dictionary;