/** * 节日类型 */ export declare type Festival = { title?: string; }; export declare type FestivalProps = { [propName: string]: Festival; };