import type { ReactNode } from "react"; import React from "react"; interface DescriptionListProps { /** * A tuple where the first item is the string to display as the term * and the second value is the string to display as the definition */ readonly data: [string, string | ReactNode][]; } export declare function DescriptionList({ data }: DescriptionListProps): React.JSX.Element; export {};