import { HTMLAttributes, ReactElement, Ref } from 'react';
import { IComponentBaseProps } from '../types';
export type CardFigureProps = HTMLAttributes & IComponentBaseProps & {
ref?: Ref;
};
declare const CardFigure: {
({ ref, children, className, dataTheme, ...props }: CardFigureProps): ReactElement;
displayName: string;
};
export default CardFigure;