import { ChainData, Token } from "@0xsquid/squid-types"; interface UseSendTransactionParams { to: string | undefined; amount: string | undefined; token: Token | undefined; chain: ChainData | undefined; } interface UseSendTransactionReturnType { sendTransaction: () => void; cancelSend: () => void; } export declare function useSendTransaction({ to, amount, token, chain, }: UseSendTransactionParams): UseSendTransactionReturnType; export {};