/** @jsxRuntime classic */ /** @jsx h */ import { PersonalizationProps } from '@algolia/recommend-core'; import { createElement } from 'preact'; import { FrequentlyBoughtTogetherProps as FrequentlyBoughtTogetherPropsPrimitive } from '../frequentlyBoughtTogether'; import { EnvironmentProps, HTMLTemplate } from '../types'; type FrequentlyBoughtTogetherProps = {}> = FrequentlyBoughtTogetherPropsPrimitive | (FrequentlyBoughtTogetherPropsPrimitive & PersonalizationProps); export declare function frequentlyBoughtTogether({ container, environment, itemComponent, fallbackComponent, headerComponent, view, children, ...props }: FrequentlyBoughtTogetherProps & EnvironmentProps): createElement.JSX.Element | null; export {};