import * as React from 'react'; export interface MmuiPaginationInputProps { pageNumber: string; staticUrl: string; totalPages: number; updateCurrentPage: (pageNumber: number) => void; } export declare class MmuiPaginationInputComponent extends React.Component { protected pageNumberInput: HTMLInputElement; componentDidUpdate(prevProps: any): void; updateCurrentPageDebounced: any; handleKeyDown: (e: any) => void; handleKeyUp: (e: any) => void; onCurrentPageUpdate: (e: any, context: any) => void; handleBlur: () => void; render(): JSX.Element; }