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