UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

29 lines (28 loc) 835 B
/// <reference types="react" /> import PropTypes from 'prop-types'; interface Props { activePage: number; entries: number; filteredRows: any[]; info: boolean; noRecordsFoundLabel: string; pages: any[]; label?: string[]; } declare const DataTableInfo: { (props: Props): JSX.Element; propTypes: { activePage: PropTypes.Validator<number>; entries: PropTypes.Validator<number>; filteredRows: PropTypes.Validator<any[]>; info: PropTypes.Validator<boolean>; noRecordsFoundLabel: PropTypes.Validator<string>; pages: PropTypes.Validator<any[]>; label: PropTypes.Requireable<string[]>; }; defaultProps: { label: string[]; }; }; export default DataTableInfo; export { DataTableInfo as MDBDataTableInfo };