pagamio-frontend-commons-lib
Version:
Pagamio library for Frontend reusable components like the form engine and table container
9 lines (8 loc) • 433 B
TypeScript
import type { FilterConfig } from './types';
interface DashboardFilterProps {
filters: FilterConfig[];
selectedFilters: Record<string, string | string[] | null>;
handleFilterChange: (name: string, value: string | string[] | null) => void;
}
declare const DashboardFilter: ({ filters, selectedFilters, handleFilterChange }: DashboardFilterProps) => import("react/jsx-runtime").JSX.Element;
export default DashboardFilter;