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