import React from 'react'; import { IComponentBaseProps } from '../types'; export type StatSectionProps = React.HTMLAttributes & IComponentBaseProps & { section: 'title' | 'value' | 'desc' | 'figure' | 'actions'; }; declare const StatSection: React.ForwardRefExoticComponent & IComponentBaseProps & { section: 'title' | 'value' | 'desc' | 'figure' | 'actions'; } & React.RefAttributes>; export default StatSection;