import { ChatItem } from "../models/Chat";
type RowsViewProps = {
    rows: any;
    blockId: string;
    loading?: boolean;
    chat?: ChatItem;
    showFooter?: boolean;
    showExport?: boolean;
    dashboardId?: string;
    gridHeight?: string;
    addChartToDashboard?: (id: string, chat: ChatItem, type: string) => void;
};
export default function RowsView({ rows, blockId, loading, chat, showFooter, showExport, dashboardId, gridHeight, addChartToDashboard, }: RowsViewProps): import("react/jsx-runtime").JSX.Element;
export {};
