import React from 'react'; import { SelectProps } from "antd"; import "./Select.scss"; interface StarshipSelectProps { options: { label: string; value: string | number | undefined | null; icon?: React.ReactNode; }[]; } declare const StarshipSelect: (props: Omit & StarshipSelectProps) => React.JSX.Element; export default StarshipSelect;