import { ChangeEventHandler, FC } from 'react'; import './simple-dropdown.styles.scss'; /** * SimpleDropdownProps * * @memberof SimpleDropdown */ export interface SimpleDropdownProps { /** * Label displayed on the left of the drop down. */ label: string; /** * This is the list of values to be displayed on the Dropdown. */ options: (string | number)[]; /** * The selected option when the Dropdown is first shown. */ defaultValue?: string | number; /** * Event to fire when the value of the select element changes */ onChange?: ChangeEventHandler; } /** * A Simple Dropdown Component */ export declare const SimpleDropdown: FC;