import Row from "./Row"; import type { RowData } from "./Row"; export interface RowButtonProps { row: TData; rowIndex: number; } export type RowButton = (props: RowButtonProps) => HTMLElement | null;