/// import type { ISelectOption } from '../../cell-value'; import type { ICellEditor, IEditorRef } from '../type'; export type ISelectValue = T extends true ? string[] : string; export interface ISelectEditorMain extends ICellEditor> { preventAutoNewOptions?: boolean; options?: ISelectOption[]; isMultiple?: T; style?: React.CSSProperties; className?: string; onOptionAdd?: (optionName: string) => Promise; } export declare const SelectEditorMain: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>;