import type { FacetOptionsSection } from '../../state/state-sections.js'; export declare const isFacetEnabledSelector: (state: FacetOptionsSection, id: string) => boolean; export declare const selectFacetOptions: (state: { facetOptions?: { freezeFacetOrder?: boolean; }; }) => { freezeFacetOrder: boolean; } | undefined;