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