import { SearchFilter } from "@adobe/magento-storefront-events-sdk/dist/types/types/schemas"; import { ProductSearchResponse } from "../types/interface"; declare const updateSearchInputCtx: (searchUnitId: string, searchRequestId: string, phrase: string, filters: Array, pageSize: number) => void; declare const updateSearchResultsCtx: (searchUnitId: string, searchRequestId: string, results: ProductSearchResponse["data"]["productSearch"]) => void; export { updateSearchInputCtx, updateSearchResultsCtx };