import React from "react";
export interface CardFooterProps {
    className?: string;
    children: React.ReactNode;
}
declare function CardFooter({ className, children }: CardFooterProps): JSX.Element;
export default CardFooter;
