import type { BuiltInRendererDefinition } from '../../types/built-in-renderer.types'; /** * Image thumbnail. * * `CellPatcher` swaps the `src` in place on a value change rather than * rebuilding the element, so a streaming update never makes the browser * re-fetch and re-decode an image it already has. */ export declare const imageRenderer: BuiltInRendererDefinition; /** * Round avatar, falling back to coloured initials. * * The fallback is the point: user tables are full of rows with no uploaded * picture, and a broken-image icon on every one of them is worse than no * avatar at all. The initials' colour is derived from the name, so the same * person is the same colour on every screen without any stored preference. */ export declare const avatarRenderer: BuiltInRendererDefinition; //# sourceMappingURL=media.d.ts.map