import React from "react"; import { SelectRowProps } from "../.."; export interface ExpandRow { showExpandColumn?: boolean; expandColumnPosition?: string; nonExpandable?: any[]; } interface RowTemplateProps { renderContent: () => any; cellEl: string; selectRow?: SelectRowProps | undefined; expandRow?: ExpandRow; [key: string]: any; } declare const RowTemplate: React.FC; export default RowTemplate;