/** @jsx createElement */ import type { Renderer, ComponentProps, RecommendComponentProps } from '../types'; export type FrequentlyBoughtTogetherProps = Record> = ComponentProps<'div'> & RecommendComponentProps; export declare function createFrequentlyBoughtTogetherComponent({ createElement, Fragment, }: Renderer): (userProps: FrequentlyBoughtTogetherProps) => JSX.Element;