import React from "react"; import { FC } from 'react'; import { SelectItemOptionsType } from 'primereact/selectitem'; /** * @function * @name TableHeader * @param {string} globalFilterValue: value to filter the table * @param {function} onGlobalFilterChange: function that aplies changes * to the table * @returns {React.Component} - smart component that contains an input to search and filter * the table * @author: Manuel Gomez [manolobkno08] (https://github.com/manolobkno08) */ declare const TableHeader: FC<{ onGlobalFilterChange: any; onLimit: React.Dispatch>; fields: SelectItemOptionsType; children?: JSX.Element; }>; export { TableHeader };