import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface IProps extends IReactComponentProps { bullets?: boolean; headerClass?: string; headerHasDivider?: boolean; headerTag?: string; headerText?: string; listClassName?: string; listItemClassName?: string; listItemFontSize?: 'xs' | 's' | 'm' | 'l' | 'xl'; listItemFontWeight?: '300' | '400' | '500' | '700' | '900'; listItemWrapElement?: boolean; tag?: string; } export default class List extends React.Component { static defaultProps: Partial; generateListItemClassNames(child?: React.ReactElement): string; render(): React.JSX.Element; } export {}; //# sourceMappingURL=List.d.ts.map