import React from 'react';
type FunNotificationShowMoreButtonProps = {
    numberOfNotifications: number;
    isExpanded: boolean;
    onClick: () => void;
};
export declare const FunNotificationShowMoreButton: ({ numberOfNotifications, isExpanded, onClick, }: FunNotificationShowMoreButtonProps) => React.JSX.Element;
export {};
