import type { SegmentedProps } from 'antd'; import { Segmented as AntSegmented } from 'antd'; type ElementProps = Omit & { options?: SegmentedProps['options']; }; export function Segmented({ options = [], ...props }: ElementProps) { return ; }