import * as React from 'react'; export interface ShowMoreOrLessProps { showMore: boolean; onClick: () => void; } export declare const ShowMoreOrLess: React.FunctionComponent;