export type SpendPreview = { chain_id: number; kind: "native_transfer" | "erc20_transfer" | "contract_call" | "x402_settlement"; token_symbol: string; token_address: string | null; amount_human: string; amount_atoms: string; from: string; to: string | null; estimated_fee_native?: string; policy_ok: boolean; session_id: string; reason: string; x402?: { role: "buyer" | "seller"; payer: string; payee: string; auth_nonce: string; resource_url?: string; }; }; export type UnsignedEvmTx = Record; export type PendingTx = { id: string; unsigned: UnsignedEvmTx; spend_preview: SpendPreview; }; //# sourceMappingURL=types.d.ts.map