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