import React from 'react'; import { IDay } from '../../models/AgendaStore'; import { ICustomItemAction } from '../../interfaces/agendaProps'; import { Moment } from 'moment'; import { DragObject } from '../../interfaces/dndInterfaces'; export interface IProps { handleTracksContainerWidthChange: (newWidth: number) => void; handleTrackWidthChange: (newWidth: number) => void; width: number; days: Array; customItemActions?: Array; moveDragObject: (trackId: string, newStart: Moment, dragObject: DragObject) => void; paginateRight: () => void; canPaginateRight: boolean; paginateLeft: () => void; canPaginateLeft: boolean; } declare const _default: React.FC; export default _default;