import * as React from "react"; import { CellContext } from "@tanstack/react-table"; interface DataTableActionCellProps { ctx: CellContext; } declare const DataTableActionCell: { ({ ctx, }: DataTableActionCellProps): React.JSX.Element | null; displayName: string; }; export { DataTableActionCell }; export type { DataTableActionCellProps }; //# sourceMappingURL=data-table-action-cell.d.ts.map