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