import { ReactNode } from 'react';
export interface HorizontalListProps {
    /** The items to display. */
    values: ReactNode[];
    /** The separator to use. */
    separator?: ReactNode;
}
/** Represents a component to show text separated by a given separator in a horizontal direction. */
export declare const HorizontalList: ({ values, separator }: HorizontalListProps) => import("react/jsx-runtime").JSX.Element;
