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