import { CellValue, ColumnType, ITypeOptions, Language } from '../../types'; import { ICollaboratorsById } from '.'; export declare const transformCellValueToStatus: ({ originCellValue, originTypeOptions, targetTypeOptions, opts, }: { originCellValue: CellValue; originTypeOptions: ITypeOptions; targetTypeOptions: Pick, 'statuses'>; opts?: { locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => { statusId: string | null; optionNotFound: boolean; };