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