import React from "react"; export type ColumnTableProps = { key: string; label: string | React.ReactNode; align: "center" | "left" | "right"; rowPrefixIcon?: string; renderCell: (item: any) => React.ReactNode; }; export interface PartnerMonthlyTableProps { columns: Array; data: Array; title?: string; tooltip?: string; customBottomRow?: React.ReactNode; onClickRow?: (item: any, rowIndex: number) => void; getBackgroundRow?: (item: any, rowIndex: number) => string; } declare const PartnerMonthlyTable: ({ columns, data, title, tooltip, customBottomRow, onClickRow, getBackgroundRow, }: PartnerMonthlyTableProps) => React.JSX.Element; export default PartnerMonthlyTable;