import * as React from "react";
//#region src/DataList.d.ts
interface DataListProps {
  items: Array<{
    term: string;
    value: React.ReactNode;
  }>;
  className?: string;
}
declare function DataList({ items, className }: DataListProps): React.JSX.Element;
//#endregion
export { DataList, DataListProps };