import React from "react"; export interface CardFooterProps { className?: string; muted?: boolean; children?: any; [x: string]: any; } export declare const CardFooter: ({ className, muted, children, ...props }: CardFooterProps) => React.JSX.Element;