import { Address } from '@terradharitri/sdk-core'; import { EnergyType } from '../../attributes-decoder'; export declare class UserWeeklyRewardsSplittingEventTopics { readonly eventName: string; readonly caller: Address; readonly currentWeek: number; readonly energy: EnergyType; constructor(rawTopics: string[]); toJSON(): { eventName: string; caller: Address; energy: EnergyType; currentWeek: number; }; }