import React from 'react'; declare const SimpleShowMore: React.FC; interface SimpleShowMoreProps { showLabel: string; hideLabel: string; content: JSX.Element | JSX.Element[]; onClick?: (arg: boolean) => void; } export default SimpleShowMore;