import * as React from 'react';
/**
 * The HorizontalTable component is a one-row table with label/value pairs.
 */
interface HorizontalTableItem {
    label: string;
    value: string;
}
interface HorizontalTableProps {
    className?: string;
    items?: HorizontalTableItem[];
}
declare function HorizontalTable({ className, items }: HorizontalTableProps): React.JSX.Element;
export default HorizontalTable;
