import type { ComponentPropsWithRef, ElementType } from 'react'; export type ContentCardBodyProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Element containing the body elements of the content card. * @docs {@link https://design.visa.com/components/content-card/?code_library=react | See Docs} */ declare const ContentCardBody: { ({ className, tag: Tag, ...remainingProps }: ContentCardBodyProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ContentCardBody;