import * as React from "react"; interface InterfaceShowMoreButtonProps { onClickFunction: (...args: any[]) => any; id?: string | number; more: boolean; } export declare const ShowMoreButton: React.SFC; export default ShowMoreButton;