import React from "react"; import type { CellRendererProps } from "./CollectionViewTypes"; /** * Default cell renderer for the headless CollectionView. * Handles all built-in property types without depending on any Rebase core types. * * @group Preview components */ export declare function DefaultCellRenderer({ row, propertyKey, property, value, size, width, height }: CellRendererProps): React.JSX.Element;