import React from "react"; import { BoxProps } from "@primer/react"; export type CardProps = Omit & { rounded?: 'small' | 'medium' | 'large' | 'full' | number; border?: boolean; shadow?: 'small' | 'medium' | 'large' | 'extraLarge'; }; export type CardHeaderProps = { title?: string; description?: string; leadingVisual?: React.ElementType; action?: React.ReactNode; }; export type CardImageProps = { url?: string; image?: string; svg?: string; height: number; }; export type CardContentProps = { children: React.ReactNode; }; export type CardActionsProps = { children: React.ReactNode; }; export declare const Card: React.FC & { Header: React.FC; Image: React.FC; Content: React.FC; Actions: React.FC; };