import type { NumericFacetSection, SearchSection } from '../../../../state/state-sections.js'; import type { NumericFacetResponse, NumericFacetValue } from './interfaces/response.js'; export declare const numericFacetResponseSelector: (state: SearchSection & NumericFacetSection, facetId: string) => NumericFacetResponse | undefined; export declare const numericFacetActiveValuesSelector: (state: SearchSection & NumericFacetSection, facetId: string) => NumericFacetValue[]; export declare const numericFacetSelectedValuesSelector: (state: SearchSection & NumericFacetSection, facetId: string) => NumericFacetValue[]; export declare const numericFacetExcludedValuesSelector: (state: SearchSection & NumericFacetSection, facetId: string) => NumericFacetValue[];