import React from "react"; interface CardBodyProps { className?: string; title?: string; [x: string]: any; } export declare const CardBody: ({ className, title, ...props }: CardBodyProps) => React.JSX.Element; export {};