type GetStrategy = { appId: string; apiKey: string; region: string; }; type StrategyResponse = { facetsScoring: Array<{ facetName: string; score: number; }>; personalizationImpact: number; }; export declare const getStrategy: ({ region, apiKey, appId }: GetStrategy) => Promise; export {};