import type { ComponentPropsWithRef, ElementType } from 'react'; export type ContentCardProperties = { /** Show bottom border on content card */ borderBlockEnd?: boolean; /** Card Clickable */ clickable?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Compact displays summarizing or directing users to more information. * @docs {@link https://design.visa.com/components/content-card/?code_library=react | See Docs} * @related content-card-body, content-card-image, content-card-subtitle, content-card-title * @vgar TODO * @wcag TODO */ declare const ContentCard: { ({ borderBlockEnd, className, clickable, tag: Tag, ...remainingProps }: ContentCardProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ContentCard;