import { ColumnType, ITypeOptions, Language, MaybeAbsentCellValue } from '../../../types'; import { ICollaboratorsById } from '../types'; export declare const transformCellValueToString: ({ cellValue, typeOptions, opts, }: { cellValue: MaybeAbsentCellValue; typeOptions: ITypeOptions; opts?: { preserveLongText?: boolean | undefined; locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => string | null; /** * The returned string will not contain any newlines, assuming valid input. */ export declare const transformCellValueToStringArray: ({ cellValue, typeOptions, opts, }: { cellValue: MaybeAbsentCellValue; typeOptions: ITypeOptions; opts?: { preserveLongText?: boolean | undefined; locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => string[];