///
import type { IUserCellValue } from '@teable/core';
import type { ICellEditor, IEditorRef } from '../type';
import type { ICollaborator } from './types';
export interface IUserEditorBaseProps extends ICellEditor {
isMultiple?: boolean;
onChange?: (value?: IUserCellValue | IUserCellValue[]) => void;
className?: string;
onSearch?: (value: string) => void;
collaborators?: ICollaborator[];
isLoading?: boolean;
}
export type IUserEditorRef = IEditorRef;
export declare const UserEditorBase: import("react").ForwardRefExoticComponent>;