import React from 'react'; interface DropDownProps { options: string[]; label?: string; onChange: (value: string) => void; } declare const DropDown: React.FC; export default DropDown;