import type { Config, GetTransactionErrorType, ResolvedRegister } from '@wagmi/core'; import type { Compute, ConfigParameter } from '@wagmi/core/internal'; import { type GetTransactionData, type GetTransactionOptions } from '@wagmi/core/query'; import { type UseQueryReturnType } from '../utils/query.js'; export type UseTransactionParameters> = Compute & ConfigParameter>; export type UseTransactionReturnType> = UseQueryReturnType; /** https://wagmi.sh/react/api/hooks/useTransaction */ export declare function useTransaction>(parameters?: UseTransactionParameters): UseTransactionReturnType; //# sourceMappingURL=useTransaction.d.ts.map