import * as React from "react"; import { ChildRendererProps } from "./types"; import "./FilterConditionSelector.scss"; export type ElementType = "filterablePropertyCategory" | "simpleFilterableProperty" | "filterablePropertyWithLinkedConditions"; interface Props { id: string; pathFromRoot: string[]; name: string; type: ElementType; isSelected: boolean; childIds: string[]; isExpanded: boolean; searchTerm: string; childRenderer: React.ComponentType; onSelect: (id: string) => void; toggleExpand: (id: string) => void; } export declare const FilterConditionSelectorItem: React.FC; export {};