8 lines
163 B
TypeScript
8 lines
163 B
TypeScript
|
import React from 'react';
|
||
|
type CardProps = {
|
||
|
children: React.ReactNode;
|
||
|
className?: string;
|
||
|
};
|
||
|
export declare const Card: React.FC<CardProps>;
|
||
|
export {};
|