/** Props接口 */ interface IProps { children: any; list?: string[]; templateUuid: string; onRefresh: () => void; } /** * 批量修改有效时间面板 */ export default function Component(props: IProps): JSX.Element; export {};