import { LookingSimilarQuery } from '@algolia/recommend'; import { RecommendationsProps } from './getRecommendations'; import { ProductRecord } from './types'; export type GetLookingSimilarProps = RecommendationsProps & Omit; export declare function getLookingSimilar({ objectIDs, recommendClient, transformItems, fallbackParameters, indexName, maxRecommendations, queryParameters, threshold, }: GetLookingSimilarProps): Promise<{ recommendations: ProductRecord[]; }>;