import React from 'react'; export interface DropdownProps { /** List of nav to be passed into the component as array of Objects */ items: string[]; /** Function to convert item to a custom Component */ itemToComponent?: (item: string) => React.ReactNode; /** Array of positions of separators */ separators?: number[]; /** The change event callback */ onChange: (item: string) => void; } declare const Dropdown: ({ items, itemToComponent, separators, onChange, ...other }: DropdownProps) => JSX.Element; export default Dropdown;