import React from 'react'; export interface DefinitionListProps extends React.HTMLAttributes { /** * A map of key-value pairs to be displayed in the list. * * Using a `Map` is deprecated and will be removed in a future release. */ definitions: Map | [string, string][]; } export declare const DefinitionList: React.FC;