import React from 'react'; import './style.scss'; export interface Stat { label: string; value: string | number; format?: 'number' | 'currency' | 'duration' | 'bytes'; icon?: React.ReactNode; } interface StatsGridProps { stats: Stat[]; columns?: 2 | 3 | 4; className?: string; } export declare const StatsGrid: React.FC; export {}; //# sourceMappingURL=StatsGrid.d.ts.map