5 lines
203 B
TypeScript
5 lines
203 B
TypeScript
import React from 'react';
|
|
import type { CardProps } from '../../typing';
|
|
declare const Card: React.ForwardRefExoticComponent<Omit<CardProps, "ref"> & React.RefAttributes<unknown>>;
|
|
export default Card;
|