import type { BuiltInRendererDefinition } from '../../types/built-in-renderer.types'; /** * Plain text — the default for `string` columns, and the fallback whenever a * more specific renderer cannot be resolved. * * `textOnly`, so the Virtual DOM updates these cells with a single * `textContent` write. */ export declare const textRenderer: BuiltInRendererDefinition; /** * Text that keeps its line breaks. * * Wrapping is done with `white-space: pre-line` rather than `
` elements * precisely so the renderer stays `textOnly`: the Virtual DOM's text patch * writes `textContent`, which would destroy any child elements. CSS gets the * same result and survives patching. * * Row height is not adjusted — pair this with `rowHeightMode: 'auto'` when the * content should drive it. */ export declare const multilineRenderer: BuiltInRendererDefinition; //# sourceMappingURL=text.d.ts.map