import { default as React } from 'react'; interface TrendsTableProps { sx?: any; height?: number | string; selectedDateRange: { start: Date; end: Date; }; selectedCategory?: string; onClickRow?: (category: string) => void; } declare const TrendsTableContainer: React.FC; export default TrendsTableContainer;