import React, { type ReactNode } from 'react'; export type CardOrientation = 'vertical' | 'horizontal'; export type CardShape = 'default' | 'subtle' | 'inset'; export type MediaType = ReactNode | { src: string; alt?: string; }; export interface CardProps { orientation?: CardOrientation; shape?: CardShape; title?: string; description?: string; descriptionMaxChars?: number; media?: MediaType; content?: React.ReactNode; footer?: React.ReactNode; className?: string; maxWidth?: string | number; minWidth?: string | number; maxHeight?: string | number; minHeight?: string | number; } export declare const Card: ({ orientation, shape, title, description, descriptionMaxChars, media, content, footer, className, maxWidth, minWidth, maxHeight, minHeight, }: CardProps) => import("react/jsx-runtime").JSX.Element;