import type { BaseElementProps, BaseOption } from './types'; import type { SegmentedProps } from 'antd'; import { Form, Segmented as AntSegmented } from 'antd'; import type { FC } from 'react'; const { Item: FormItem } = Form; type ElementProps = BaseElementProps & { options: BaseOption[]; }; function Segmented({ value, setValue, options, status, validateStatus, help, ...props }: ElementProps) { return ( ); } export default Segmented as FC>;