import type { EventFeatureBaseConfig } from "./feature.base"; declare const featureType: "survey"; export interface FeatureSurveyConfig { /** 问卷 ID */ survey_id: string; /** 问卷 url 地址 */ survey_url: string; } export type EventFeatureConfigOfSurvey = EventFeatureBaseConfig & { feature_type: typeof featureType; config: FeatureSurveyConfig; }; export declare const EventFeatureConfigOfSurveyValidator: import("@seayoo-web/validator").ObjectValidator; export {};