import { CellValue, ColumnType, IAttachment, ITypeOptions, Language } from '../../types'; import { ICollaboratorsById } from './types'; export declare const transformCellValueToAttachmentArray: ({ cellValue, typeOptions, opts, }: { cellValue: CellValue; typeOptions: ITypeOptions; opts?: { locale?: Language | undefined; collaboratorsById?: ICollaboratorsById | undefined; } | undefined; }) => IAttachment[] | CellValue | null;