import { ReactNode } from "react"; import { ListDataFieldValue, NextAdminContext } from "../types"; type Props = { cell: ListDataFieldValue; formatter?: (cell: any, context?: NextAdminContext) => ReactNode; copyable?: boolean; getRawData?: () => any; }; export default function Cell({ cell, formatter, copyable, getRawData }: Props): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Cell.d.ts.map