import * as common from './common'; import * as transaction from './transaction'; export declare type InternalOptions = {}; export declare type Create = { fromAccountId: string; toAccountId: string; amount: string; method: string; targetStateId?: transaction.TransactionState; options?: InternalOptions; purpose: common.Purpose; description?: string; annotations?: { [x: string]: string; }; tags?: Array; groupId?: string; };