import { Address, Cell, StateInit } from '@ton/core'; export interface SendProvider { connect(): Promise; sendTransaction(address: Address, amount: bigint, payload?: Cell, stateInit?: StateInit): Promise; address(): Address | undefined; }