import React from 'react';
import type UIAnalyticsEvent from '@atlaskit/analytics-next/UIAnalyticsEvent';
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<ManagedPaginationProps> {
    onChange: (_event: any, newValue: any, analyticsEvent?: UIAnalyticsEvent) => void;
    render(): React.JSX.Element;
}
export {};
