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