import React from 'react'; declare type ShowMoreButtonProps = React.ComponentProps<'button'> & { isShowingMore: boolean; }; export declare function ShowMoreButton({ isShowingMore, ...props }: ShowMoreButtonProps): JSX.Element; export {};