import { type LegacySearchAction } from '../../../analytics/analytics-utils.js'; import type { NumericFacetValue } from './interfaces/response.js'; export interface LogNumericFacetBreadcrumbActionCreatorPayload { /** * The facet id of the numeric facet corresponding to the breadcrumb. */ facetId: string; /** * The numeric facet value deselected using the breadcrumb. */ selection: NumericFacetValue; } export declare const logNumericFacetBreadcrumb: (payload: LogNumericFacetBreadcrumbActionCreatorPayload) => LegacySearchAction; export declare const numericBreadcrumbFacet: () => import("../../../search/search-actions.js").SearchAction;