/// <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 };
