import React from "react"; type ContextType = { indexKey: number; listLength: number; arrowDownIcon: string; arrowUpIcon: string; arrowLeftRed: string; }; declare const CardContext: React.Context; export default CardContext;