import Card from './card'; import List from './list'; export type OPCardType = typeof Card & { List: typeof List; }; const OPCard = Card as OPCardType; OPCard.List = List; export default OPCard;