aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
20 lines • 769 B
TypeScript
export type EcosystemStatus = "thriving" | "stable" | "recovering" | "critical";
export interface EcosystemLayer {
id: string;
name: string;
health: number;
trend?: number;
biodiversity?: number;
status?: EcosystemStatus;
description?: string;
}
export interface LivingEcosystemSimulatorProps {
className?: string;
title?: string;
layers?: EcosystemLayer[];
onSelectLayer?: (layer: EcosystemLayer) => void;
highlightThreshold?: number;
}
export declare function LivingEcosystemSimulator({ className, title, layers, onSelectLayer, highlightThreshold, }: LivingEcosystemSimulatorProps): import("react/jsx-runtime").JSX.Element;
export default LivingEcosystemSimulator;
//# sourceMappingURL=LivingEcosystemSimulator.d.ts.map