import React from "react"; import { ITypeDropDownItemSelection } from "./types"; import "./styles/styles.scss"; interface ITypeElementDropdown { elements: string[]; selectedItem: ITypeDropDownItemSelection; onSelect: (id: string, title: string) => void; selectionItemWidth: number; } declare const TypeElementDropdown: React.FC; export default TypeElementDropdown;