import { CellValue, ColumnType, ITypeOptions, Language } from '../../types'; import { CollaboratorMatcher } from '../transformString'; import { ICollaboratorsById } from './types'; export declare const transformCellValue: ({ originCellValue, originTypeOptions: incorrectlyTypedOriginTypeOptions, targetTypeOptions: incorrectlyTypedTargetTypeOptions, opts, }: { originCellValue: CellValue; originTypeOptions: ITypeOptions & { type: OT; }; targetTypeOptions: ITypeOptions & { type: TT; }; opts?: { locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; collaboratorMatcher?: CollaboratorMatcher | undefined; } | undefined; }) => CellValue | null;