import React from 'react'; import { type UIAnalyticsEvent } from '@atlaskit/analytics-next'; import type { I18nShape } from '../types'; interface ManagedPaginationProps { value?: number; onChange: (newValue: any, analyticsEvent?: UIAnalyticsEvent) => void; total: number; i18n?: I18nShape; testId?: string; isDisabled?: boolean; } export default class ManagedPagination extends React.Component { onChange: (_event: any, newValue: any, analyticsEvent?: UIAnalyticsEvent) => void; render(): React.JSX.Element; } export {};