import React from 'react'; import './Select.scss'; export interface Props { optionValue: any; optionLabel: any; selectOptionStyle?: React.CSSProperties; } declare const SelectOptions: ({ optionValue, optionLabel, selectOptionStyle }: Props) => import("react/jsx-runtime").JSX.Element; export default SelectOptions;