import { default as React } from 'react'; type CardProps = React.HTMLAttributes & { children: React.ReactNode; }; export declare const Card: { ({ children, className, ...props }: CardProps): import("react/jsx-runtime").JSX.Element; Header: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element; Content: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element; Footer: ({ children, className, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element; }; export default Card;