import { type Address } from 'viem';
import { type ChainId, type WaveId, type WaveStatsResponse } from '@azuro-org/toolkit';
import { type QueryParameter } from '../../global';
type WaveStats = {
    isActivated: boolean;
} & WaveStatsResponse;
type Props = {
    account: Address;
    waveId?: WaveId;
    chainId?: ChainId;
    query?: QueryParameter<WaveStats | null>;
};
export declare const useWaveStats: ({ account, waveId, chainId, query }: Props) => import("@tanstack/react-query").UseQueryResult<NoInfer<WaveStats | null>, Error>;
export {};
