/** Props接口 */ interface IProps { children: any; list: string[]; onRefresh: () => void; } /** * 拒绝操作面板 */ export default function Component(props: IProps): JSX.Element; export {};