/** * 模拟表单中的一个简单控件 */ declare const SimpleComponent: (props: { value?: string | number | undefined; onChange?: ((val: any) => void) | undefined; testid?: string | undefined; }) => import("react/jsx-runtime").JSX.Element; export default SimpleComponent;