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