import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "cashback"; export interface FeatureCashbackConfig { /** 计算充值总额的开始时间 */ order_start_time: number; /** 计算充值总额的结束时间 */ order_end_time: number; /** 可领取充值返还奖励的开始时间 */ claim_rewards_start_time: number; /** 可领取充值返还奖励的结束时间 */ claim_rewards_end_time: number; } export type EventFeatureConfigOfCashback = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureCashbackConfig; }; export declare const EventFeatureConfigOfCashbackValidator: import("@seayoo-web/validator").ObjectValidator; export {};