import React, { FC } from 'react'; import { ISubscriberInfo } from '../../../../../../packages/types'; interface ShowMoreButtonProps { hasMoreData: boolean; setLimit: React.Dispatch>; initialLimit: number; handleSubscriptionClick?: (info: ISubscriberInfo, clickType: string) => void; } export declare const ShowMoreButton: FC; export {};