/** * @overload * @param {UplcType} UplcType * @param {UplcValue[]} items * @returns {UplcList} */ export function makeUplcList(UplcType: UplcType, items: UplcValue[]): UplcList; /** * @overload * @param {{itemType: UplcType, items: UplcValue[]}} args * @returns {UplcList} */ export function makeUplcList(args: { itemType: UplcType; items: UplcValue[]; }): UplcList; /** * @param {FlatReader} r * @param {UplcType} itemType * @param {() => UplcValue} itemReader * @returns {UplcList} */ export function decodeUplcListFromFlat(r: FlatReader, itemType: UplcType, itemReader: () => UplcValue): UplcList; import type { UplcType } from "../index.js"; import type { UplcValue } from "../index.js"; import type { UplcList } from "../index.js"; import type { FlatReader } from "../index.js"; //# sourceMappingURL=UplcList.d.ts.map