import type { AutomaticFacetGeneratorOptions } from '../../../controllers/facets/automatic-facet-generator/headless-automatic-facet-generator-options.js'; import type { FacetValue } from '../facet-set/interfaces/response.js'; export interface ToggleSelectAutomaticFacetValueActionCreatorPayload { /** * The field of the automatic facet. */ field: string; /** * The target automatic facet value. */ selection: FacetValue; } export declare const setOptions: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: Partial], Partial, "automaticFacet/setOptions", never, never>; export declare const deselectAllAutomaticFacetValues: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: string], string, "automaticFacet/deselectAll", never, never>; export declare const toggleSelectAutomaticFacetValue: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[payload: ToggleSelectAutomaticFacetValueActionCreatorPayload], ToggleSelectAutomaticFacetValueActionCreatorPayload, "automaticFacet/toggleSelectValue", never, never>;