import * as React from 'react';
import type { StatefulPaginationProps } from './types';
declare function StatefulPagination({ numPages, initialState, stateReducer, onPageChange, ...props }: StatefulPaginationProps): React.JSX.Element;
declare namespace StatefulPagination {
    var defaultProps: {
        initialState: {
            currentPage: number;
        };
        stateReducer: (changeType: any, changes: any) => any;
        overrides: {};
    };
}
export default StatefulPagination;
