import { default as React, ComponentPropsWithoutRef } from 'react'; export interface CardBodyProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the content for the card body */ children?: React.ReactNode; } export declare const Body: { ({ children, className: _className, ...props }: CardBodyProps): import("react/jsx-runtime").JSX.Element; displayName: string; };