import * as React from 'react'; interface InfoLiProps { /** Name of the info item. */ label: string; /** Info item's definition or value. Wrapped inside a span element. */ children: React.ReactNode; } declare const InfoLi: ({ children, label }: InfoLiProps) => JSX.Element; export default InfoLi;