import { IListView } from '@nishans/types'; import { INotionCoreOptions } from '../../'; import View from './View'; /** * A class to represent list view of Notion * @noInheritDoc */ declare class ListView extends View>> { constructor(arg: INotionCoreOptions); } export default ListView;