import { HtmlHTMLAttributes } from 'react';
export interface DescriptionListGroup {
detail: string;
term: string;
}
export interface DescriptionListProps extends HtmlHTMLAttributes {
/** List groups */
feGroups: DescriptionListGroup[];
/** If provided, changes the layout of the `groups` or `key` and `value` fields */
feLayout?: 'block' | 'grid' | 'inline-block';
}
/**
* The `` is a list of groups of terms and descriptions.
* It extends the interface of native html `` element.
*
* See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/folder/62a31132b1d53006c554a52e) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/dl) for further information about the element and related attributes.
*/
declare const DescriptionList: import("react").ForwardRefExoticComponent>;
export default DescriptionList;