import React from "react"; import { ITypeDropDownItem, ITypeDropDownItemSelection } from "./types"; import "./styles/styles.scss"; interface ITypeSelectionDropdown { items: ITypeDropDownItem[]; selectedItem: ITypeDropDownItemSelection; onSelect: (source: ITypeDropDownItemSelection) => void; } declare const TypeSelectionDropdown: React.FC; export default TypeSelectionDropdown;