import * as React from 'react'; export type CardProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardHeaderProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardTitleProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardDescriptionProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardActionProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardContentProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export type CardFooterProps = React.ComponentProps<'div'> & { dataTestId?: string; }; export declare const Card: (({ className, dataTestId, ...props }: CardProps) => import("react/jsx-runtime").JSX.Element) & { Header: ({ className, dataTestId, ...props }: CardHeaderProps) => import("react/jsx-runtime").JSX.Element; Footer: ({ className, dataTestId, ...props }: CardFooterProps) => import("react/jsx-runtime").JSX.Element; Title: ({ className, dataTestId, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element; Action: ({ className, dataTestId, ...props }: CardActionProps) => import("react/jsx-runtime").JSX.Element; Description: ({ className, dataTestId, ...props }: CardDescriptionProps) => import("react/jsx-runtime").JSX.Element; Content: ({ className, dataTestId, ...props }: CardContentProps) => import("react/jsx-runtime").JSX.Element; };