@zendesk/react-measure-timing-hooks
Version:
react hooks for measuring time to interactive and time to render of components
9 lines (8 loc) • 300 B
TypeScript
import 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 {};