import React from "react"; import { Theme, ThemeFontVariant } from "../types"; import { CtCardFeatureProps } from "./CtCardFeature"; export declare type CtCardProps = { title: string; imageSrc?: string; description?: string; orientation?: "horizontal" | "vertical"; size?: "small" | "medium" | "large"; theme?: Theme; fontVariant?: ThemeFontVariant; className?: string; children?: React.ReactNode; features: CtCardFeatureProps[]; onClick?: () => void; }; declare function CtCard({ title, imageSrc, description, orientation, size, theme, fontVariant, className, children, features, onClick, }: CtCardProps): JSX.Element; declare namespace CtCard { var defaultProps: { orientation: string; imageSrc: undefined; size: string; theme: Theme; fontVariant: ThemeFontVariant; children: undefined; description: undefined; features: never[]; onClick: undefined; }; } export default CtCard;