/// import type { PDSValueOption, SegmentedButtonGroupValueOption } from '../../../common/types'; export type SegmentedButtonGroupProps = { size?: 'large' | 'medium' | 'small'; value: PDSValueOption['value'] | PDSValueOption['value'][]; valueArray: SegmentedButtonGroupValueOption[]; selectionType?: 'single' | 'multi'; state?: 'normal' | 'disabled'; onClick?: (value: PDSValueOption['value']) => void; onMouseDown?: (value: PDSValueOption['value']) => void; }; declare function SegmentedButtonGroup({ size, value, valueArray, selectionType, state, onClick, onMouseDown }: SegmentedButtonGroupProps): JSX.Element; export default SegmentedButtonGroup;