import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "lottery_draw"; export interface FeatureLotteryDrawConfig { /** 可开奖起始时间 */ draw_not_before: number; /** 可开奖结束时间 */ draw_not_after: number; } export type EventFeatureConfigOfLotteryDraw = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureLotteryDrawConfig; }; export declare const EventFeatureConfigOfLotteryDrawValidator: import("@seayoo-web/validator").ObjectValidator; export {};