import { SearchFacetModel } from '../search-facets-class'; import { FacetElement } from '../interfaces/facet-element'; import { SelectedFacetsState } from '../interfaces/selected-facet-state'; export interface FacetCustomRangeProps { facet: SearchFacetModel; facetElement: FacetElement; fromValue: string; toValue: string; selectedFacets: SelectedFacetsState; customRangeApplied: (facetFieldName: string, facetChipValue: string, facetInitialValue: string, facetChipLabel: string, checkboxId: string) => void; } export declare function FacetCustomRange(props: FacetCustomRangeProps): import("react/jsx-runtime").JSX.Element;