declare const erc20TransferTransaction: (contractAddress: string, recipient: string, amount: string, decimals: number) => { contractAddress: string; entrypoint: string; calldata: import("starknet").Calldata; }; declare const erc721TransferFromTransaction: (contractAddress: string, from: string, recipient: string, tokenId: string) => { contractAddress: string; entrypoint: string; calldata: import("starknet").Calldata; }; declare const erc721SafeTransferFromTransaction: (contractAddress: string, from: string, recipient: string, tokenId: string) => { contractAddress: string; entrypoint: string; calldata: import("starknet").Calldata; }; export { erc20TransferTransaction, erc721TransferFromTransaction, erc721SafeTransferFromTransaction, };