import * as React from 'react';
import { PaginationProps } from './rc-pagination';
export declare type PaginationLocale = any;
export default class Pagination extends React.Component<PaginationProps, {}> {
    static defaultProps: {
        prefixCls: string;
        selectPrefixCls: string;
    };
    renderPagination: (locale: any) => JSX.Element;
    render(): JSX.Element;
}
