import { cryptly } from "cryptly"; import { Rail } from "../../Rail"; import { Creatable as TransactionCreatable } from "./Creatable"; export interface Transaction extends TransactionCreatable { id: cryptly.Identifier; created: string; debtor: Rail.Address; } export declare namespace Transaction { export import Creatable = TransactionCreatable; function fromCreatable(transaction: Creatable, debtor: Rail.Address): Transaction; const type: import("isly/dist/cjs/object").IslyObject; }