import type { CellObject } from 'styled-exceljs'; import type { SheetRichTextRun } from '../type.js'; export declare const parseCellRichText: (cell?: CellObject) => SheetRichTextRun[] | undefined; export declare const richTextToPlainText: (runs: SheetRichTextRun[] | undefined) => string;