import React from 'react'; interface OptionType { value: any; label: string; } export interface MySelectEDProps { options?: OptionType[]; fieldName?: any; selfSpan?: number; labelCol?: number; wrapperCol?: number; value?: string; filter?: string; mode?: string; classification?: any; } declare const SelectED: React.FC; export default SelectED;