import { Owner } from './Owner.cjs'; import { Tag } from './Tag.cjs'; type Transaction = { id: string; /** The transaction owner (aka the entity that signed this transaction). */ owner: Owner; data: string; tags: Tag[]; signature: string; anchor: null | string; target: string; }; export { Transaction };