UNPKG

nextuiq

Version:

NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat

12 lines (11 loc) 517 B
export interface TableFilterProps { searchTerm: string; onSearchChange: (value: string) => void; statusFilter: string; onStatusChange: (value: string) => void; roleFilter: string; onRoleChange: (value: string) => void; totalResults: number; filteredResults: number; } export declare const TableFilter: ({ searchTerm, onSearchChange, statusFilter, onStatusChange, roleFilter, onRoleChange, totalResults, filteredResults, }: TableFilterProps) => import("react/jsx-runtime").JSX.Element;