import { type Address } from 'viem';
import { type ChainId } from '../../config';
import { type WaveId } from '../../global';
type Props = {
    account: Address;
    waveId?: WaveId;
    chainId?: ChainId;
};
export declare const activateWave: ({ account, waveId, chainId }: Props) => Promise<void>;
export {};
