/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /// type SelectEditorProps = { editorProps?: any; nativeScroll?: boolean; value?: string; cellProps?: any; onChange?: (value: string) => void; onComplete?: Function; onTabNavigation?: Function; onCancel?: Function; theme?: string; rtl?: boolean; }; declare const SelectEditor: (props: SelectEditorProps) => JSX.Element; export default SelectEditor;