/// interface ExistingSubscriptionSchema { name?: string; subscriptionData: any; cardIndex?: any; updateBorderMethod?: (key?: number) => void; selectedCardIndex?: number; subscriptionCardsLength?: any; } declare const ExistingSubscriptionCards: ({ subscriptionData, cardIndex, updateBorderMethod, selectedCardIndex, subscriptionCardsLength, }: ExistingSubscriptionSchema) => JSX.Element; export default ExistingSubscriptionCards;