/** * @import { BytesLike } from "@helios-lang/codec-utils" * @import { Cost } from "../index.js" */ /** * Decode Cost CBOR bytes * @param {BytesLike} bytes * @returns {Cost} */ export function decodeCost(bytes: BytesLike): Cost; /** * Encode Cost using CBOR * @param {Cost} cost * @returns {number[]} */ export function encodeCost(cost: Cost): number[]; import type { BytesLike } from "@helios-lang/codec-utils"; import type { Cost } from "../index.js"; //# sourceMappingURL=Cost.d.ts.map