UNPKG

@zendesk/retrace

Version:

define and capture Product Operation Traces along with computed metrics with an optional friendly React beacon API

9 lines (8 loc) 305 B
import * as React from 'react'; import { type FilterOption } from '../constants'; interface FilterGroupProps { state: Record<string, boolean>; setState: React.Dispatch<React.SetStateAction<Record<FilterOption, boolean>>>; } export declare const FilterGroup: React.FC<FilterGroupProps>; export {};