export declare type TonSigningTransactionType = { fromAddress: string; publicKey: string; value: bigint; toAddress: string; memo: string; tokenContractAddress?: string; tokenPrecision?: number; }; export declare const mockTonChainId = 1100; export declare const tonDecimals = 9; export declare const getTonBalance: (tonAddress: string) => Promise<{ balance: string; formatted: string; }>; /** * build transfer signing message * @param transactionInfo {publicKey: "be91c0...",value: 300000,toAddress: "EQC4d8D4...",memo: "1111"} * @returns */ export declare function createSigningTransaction(transactionInfo: TonSigningTransactionType): Promise<{ signingMessageBoc: string; stateInitBoc: string; } | { signingMessageBoc?: undefined; stateInitBoc?: undefined; }>; export declare function sendTransaction(signedTransaction: string): Promise; export declare function sendMessageFee(address: string, signedTransaction: string): Promise; export declare function getTransactionsByInMessageHash(msg_hash: string): Promise;