import { ReactNode, ComponentType } from "react"; export type CardFooterProps = { message?: ReactNode; variant?: 'info' | 'notification' | 'shadow'; children?: ReactNode; }; declare const CardFooter: ComponentType; export default CardFooter;