import { Address, Cell, Dictionary, Message, StateInit } from '@ton/core'; import { ExtraCurrency } from './ec'; /** * Creates {@link Message} from params. */ export declare function internal(params: { from: Address; to: Address; value: bigint; body?: Cell; stateInit?: StateInit; bounce?: boolean; bounced?: boolean; ihrDisabled?: boolean; ihrFee?: bigint; forwardFee?: bigint; createdAt?: number; createdLt?: bigint; ec?: Dictionary | [number, bigint][] | ExtraCurrency; }): Message;