import { FC } from 'react';
import { Props } from './SecondLineElement.types';
/**
 * The SecondLineElement subcomponent is used only in SpaceListItem to
 * render the secondLine array with DividerDots inbetween.
 * @internal use only. Should not be consumed from any external parties.
 */
declare const SecondLineElement: FC<Props>;
export default SecondLineElement;
