import { type CellContext } from "@tanstack/react-table";
import type { ColumnConfig } from "../types";
export declare function EditableCellWithFormatting<T>(props: CellContext<T, unknown> & {
    columnConfig: ColumnConfig<T>;
    onCellEdit?: (newValue: unknown) => void;
}): import("react/jsx-runtime").JSX.Element;
