7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
|
import React from 'react';
|
||
|
type CardContentProps = {
|
||
|
children: React.ReactNode;
|
||
|
};
|
||
|
export declare const CardContent: React.FC<CardContentProps>;
|
||
|
export {};
|