export type SegmentedControlButtonProperties = {
    /**
     * Button identifier, used to identify the button within the segmented control
     */
    value: string;
    /**
     * Name of the icon to display within the button
     */
    iconName?: string;
};
