import { Form, Switch as AntSwitch } from 'antd'; import type { BaseElementProps } from './types'; const { Item: FormItem } = Form; export default function Switch({ value, setValue, status, isValid, help, ...props }: BaseElementProps) { return ( ); } export { type SwitchProps } from 'antd';