UNPKG

525 BTypeScriptView Raw
1import * as React from 'react';
2export declare enum TextListVariants {
3 ul = "ul",
4 ol = "ol",
5 dl = "dl"
6}
7export interface TextListProps extends React.HTMLProps<HTMLElement> {
8 /** Content rendered within the TextList */
9 children?: React.ReactNode;
10 /** Additional classes added to the TextList */
11 className?: string;
12 /** The text list component */
13 component?: 'ul' | 'ol' | 'dl';
14}
15export declare const TextList: React.FunctionComponent<TextListProps>;
16//# sourceMappingURL=TextList.d.ts.map
\No newline at end of file