/** A basic scalable vector library implemented using `Table`. */ import { MoveStruct } from '../../../utils/index.js'; export declare const TableVec: MoveStruct<{ /** The contents of the table vector. */ contents: MoveStruct<{ id: MoveStruct<{ id: import("@mysten/bcs").BcsType, "bytes[32]">; }, "0x2::object::UID">; size: import("@mysten/bcs").BcsType; }, "0x2::table::Table">; }, "0x2::table_vec::TableVec">;