UNPKG

558 BTypeScriptView Raw
1import * as React from 'react';
2export declare enum TextListItemVariants {
3 li = "li",
4 dt = "dt",
5 dd = "dd"
6}
7export 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}
15export declare const TextListItem: React.FunctionComponent<TextListItemProps>;
16//# sourceMappingURL=TextListItem.d.ts.map
\No newline at end of file