import { default as React } from 'react';
import { MetricCardData } from '../types';
import { DataGridStyles } from '../../../theme';
interface MetricSectionProps {
    metrics: MetricCardData[];
    /** Comprehensive styling options including theme, custom colors, and layout properties. */
    styles?: DataGridStyles;
    /** Force the metrics to be collapsible regardless of screen size */
    collapsible?: boolean;
    /** Default expanded state when collapsible is true */
    defaultExpanded?: boolean;
}
declare const MetricSection: React.FC<MetricSectionProps>;
export default MetricSection;
//# sourceMappingURL=index.d.ts.map