import { type Address } from 'viem'; type UseTransactionCountProps = { address?: Address | string; chainId?: number; enabled?: boolean; }; type UseTransactionCountData = { data?: number; isLoading: boolean; isError: boolean; error: Error | null; }; declare const useTransactionCount: ({ address, chainId, enabled }: UseTransactionCountProps) => UseTransactionCountData; export default useTransactionCount; //# sourceMappingURL=useTransactionCount.d.ts.map