import type { Cell, CellFormat, Sheet, WorkbookLayout } from "./types.js"; export interface ResolvedText { text: string; defaultAlign: "left" | "right" | "center"; formatColor?: string; fills?: string[]; } export declare function resolveCellXf(cell: Cell, sheet: Sheet, layout: WorkbookLayout): CellFormat | undefined; export declare function resolveCellText(cell: Cell, layout: WorkbookLayout, xf: CellFormat | undefined): ResolvedText; export declare function cellTextValue(cell: Cell, layout: WorkbookLayout): string; export declare function cellNumericValue(cell: Cell): number | null;