import type { AllHTMLAttributes, ReactNode } from 'react';
export type CardTitleProps = {
children: ReactNode;
info?: string;
variant?: 'h3' | 'h4' | 'h5';
} & Omit, 'is'>;
declare const CardTitle: ({ children, info, variant, ...props }: CardTitleProps) => import("react/jsx-runtime").JSX.Element;
export default CardTitle;
//# sourceMappingURL=CardTitle.d.ts.map