import type { SearchEngine } from '../../../../app/search-engine/search-engine.js'; import type { NumericRangeRequest } from '../../../../features/facets/range-facets/numeric-facet-set/interfaces/request.js'; import type { NumericFacetValue } from '../../../../features/facets/range-facets/numeric-facet-set/interfaces/response.js'; import { buildNumericRange, type NumericFacet, type NumericFacetOptions, type NumericFacetProps, type NumericFacetState, type NumericRangeOptions } from '../../../core/facets/range-facet/numeric-facet/headless-core-numeric-facet.js'; export type { NumericFacet, NumericFacetOptions, NumericFacetProps, NumericFacetState, NumericFacetValue, NumericRangeOptions, NumericRangeRequest, }; export { buildNumericRange }; /** * Creates a `NumericFacet` controller instance. * * @param engine - The headless engine. * @param props - The configurable `NumericFacet` properties. * @returns A `NumericFacet` controller instance. * * @group Controllers * @category NumericFacet */ export declare function buildNumericFacet(engine: SearchEngine, props: NumericFacetProps): NumericFacet;