import { type ChainId, type WaveId, type WaveLevelData } from '@azuro-org/toolkit';
import { type QueryParameter } from '../../global';
type Props = {
    waveId?: WaveId;
    chainId?: ChainId;
    query?: QueryParameter<WaveLevelData[] | null>;
};
export declare const useWaveLevels: ({ waveId, chainId, query }?: Props) => import("@tanstack/react-query").UseQueryResult<NoInfer<WaveLevelData[] | null>, Error>;
export {};
