import { PersonalizationProps } from '@algolia/recommend-core'; import { FrequentlyBoughtTogetherProps as FrequentlyBoughtTogetherVDOMProps } from '@algolia/recommend-vdom'; import { UseFrequentlyBoughtTogetherProps as UseFrequentlyBoughtTogetherPropsPrimitive } from '../FrequentlyBoughtTogether'; export type UseFrequentlyBoughtTogetherProps = UseFrequentlyBoughtTogetherPropsPrimitive | (UseFrequentlyBoughtTogetherPropsPrimitive & PersonalizationProps); export type FrequentlyBoughtTogetherProps = UseFrequentlyBoughtTogetherProps & Omit, 'items' | 'status' | 'createElement' | 'Fragment'>; export declare function FrequentlyBoughtTogether(props: FrequentlyBoughtTogetherProps): JSX.Element;