import { FunctionComponent, HTMLProps, ReactNode } from 'react'; import { OneOf } from '../../typeUtils'; export const TextListVariants: { ul: 'ul'; ol: 'ol'; dl: 'dl'; }; export interface TextListProps extends HTMLProps { component?: OneOf; children?: ReactNode; className?: string; } declare const TextList: FunctionComponent; export default TextList;