import { CellValue, ColumnType, ITypeOptions, Language } from '../../types'; import { ICollaboratorsById } from './types'; export declare const transformCellValueToSelectOptionId: ({ originCellValue, originTypeOptions, targetTypeOptions, opts, }: { originCellValue: CellValue; originTypeOptions: ITypeOptions; targetTypeOptions: Pick, 'options'>; opts?: { locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => { optionId: string | null; optionNotFound: boolean; }; export declare const transformCellValueToSelectOptionIdArray: ({ originCellValue, originTypeOptions, targetTypeOptions, opts, }: { originCellValue: CellValue; originTypeOptions: ITypeOptions; targetTypeOptions: Pick, 'options'>; opts?: { locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => { optionIds: string[] | null; optionNotFound: boolean; };