import React from "react"; import { TBadgeProps } from "../Badge"; type Props = { active: boolean; disabled?: boolean; onClick: React.MouseEventHandler; label: string; value: number | string | undefined; badgeProps: Omit | undefined; }; export declare const Facet: ({ active, disabled, onClick, label, value, badgeProps }: Props) => React.JSX.Element; export {};