import type { AutomaticFacetResponse } from './interfaces/response.js'; export type AutomaticFacetSlice = { response: AutomaticFacetResponse; }; export type AutomaticFacetSetState = { /** * The desired count of facets. * * Minimum: `1` * Maximum: `20` * @defaultValue `5` */ desiredCount: number; /** * The desired number of automatically generated facet values. * * Minimum: `1` * @defaultValue `8` */ numberOfValues: number; /** * A map of automatic facet field to an automatic facet slice containing the response. */ set: Record; }; export declare function getAutomaticFacetSetInitialState(): AutomaticFacetSetState;