import { ITableView } from '@nishans/types'; import { INotionCoreOptions } from '../../'; import Aggregator from './Aggregator'; /** * A class to represent table view of Notion * @noInheritDoc */ declare class TableView extends Aggregator>> { constructor(arg: INotionCoreOptions); } export default TableView;