/// <reference types="react" />
import * as React from 'react';
export interface IPaginationBasicExampleState {
    selectedPageIndex: number;
}
export declare class PaginationButtonsBasicExample extends React.Component<{}, IPaginationBasicExampleState> {
    constructor(props: {});
    render(): JSX.Element;
    private onPageChange;
}
