import React from "react"; import "./Dropdown.scss"; import { DropDownProps } from "antd"; interface Props extends DropDownProps { children: React.ReactChild; icon?: React.ReactNode; styleType?: "primary" | "secondary"; } declare const StarshipDropdown: (props: Props) => React.JSX.Element; export default StarshipDropdown;