import type { DateFacetSection, SearchSection } from '../../../../state/state-sections.js'; import type { DateFacetResponse, DateFacetValue } from './interfaces/response.js'; export declare const dateFacetResponseSelector: (state: SearchSection & DateFacetSection, facetId: string) => DateFacetResponse | undefined; export declare const dateFacetSelectedValuesSelector: (state: SearchSection & DateFacetSection, facetId: string) => DateFacetValue[]; export declare const dateFacetActiveValuesSelector: (state: SearchSection & DateFacetSection, facetId: string) => DateFacetValue[]; export declare const dateFacetExcludedValuesSelector: (state: SearchSection & DateFacetSection, facetId: string) => DateFacetValue[];