import React from 'react'; import './index.less'; interface SelectDropdownProps { value?: string; style?: React.CSSProperties; onChange: (val: any) => any; className?: string; option?: { label: string; value: string; [k: string]: any; }[] | Record; } declare const SelectDropdown: (props: SelectDropdownProps) => JSX.Element; export default SelectDropdown;