import React from 'react'; import { SelectProps } from '../../Select/types'; import { ExtendedFlexComponent, ExtendedFlexProps } from '../../types'; type Props = { /** * The option id or value */ readonly id: string; }; type SelectOptionProps = ExtendedFlexProps; type SelectOptionComponent = ExtendedFlexComponent; interface StyledSelectOptionProps extends SelectOptionProps, Pick { isSelected: boolean; } export { SelectOptionComponent, SelectOptionProps, StyledSelectOptionProps };