import { type TypographyProperties } from '../typography';
export type ContentCardTitleProperties = TypographyProperties;
/**
 * Title component for content card. Extends typography component.
 * @docs {@link https://design.visa.com/components/content-card/?code_library=react | See Docs}
 */
declare const ContentCardTitle: {
    ({ className, tag, ...remainingProps }: ContentCardTitleProperties): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default ContentCardTitle;
