import { type ChainId } from '../../config';
import { type WaveId } from '../../global';
export declare enum WaveLevelName {
    Grey = "Grey",
    Mist = "Mist",
    Sky = "Sky",
    Blue = "Blue",
    Ultramarine = "Ultramarine",
    Bright = "Bright",
    Brilliant = "Brilliant",
    Royal = "Royal"
}
export type WaveLevelData = {
    level: number;
    name: WaveLevelName;
    boost: string;
    pointsNeeded: string;
    comment: string;
};
export type WaveLevelsResponse = WaveLevelData[];
type Props = {
    waveId?: WaveId;
    chainId?: ChainId;
};
export declare const getWaveLevels: ({ waveId, chainId }?: Props) => Promise<WaveLevelData[] | null>;
export {};
