import * as React from 'react'; export interface TablePaginationProps { count: number; labelDisplayedRows?: any; labelRowsPerPage?: React.ReactNode; nextIconButtonProps?: any; onChangePage: (event: React.MouseEvent | null, page: number) => void; onChangeRowsPerPage?: React.ChangeEventHandler; page: number; rowsPerPage: number; ActionsComponent?: any; backIconButtonProps?: any; component?: any; rowsPerPageOptions?: number[]; SelectProps?: any; } declare const BluerainTablePagination: React.StatelessComponent; export default BluerainTablePagination;