aura-glass
Version:
A comprehensive glassmorphism design system for React applications with 142+ production-ready components
21 lines • 772 B
TypeScript
export interface NeuromorphicSignal {
channel: string;
weights: number[];
phase?: number;
}
export interface NeuromorphicLearningSnapshot {
energyUsage: number;
coherence: number;
plasticity: number;
stability: number;
timestamp: number;
}
export interface NeuromorphicLearningNetworkProps {
className?: string;
signals?: NeuromorphicSignal[];
onSnapshot?: (snapshot: NeuromorphicLearningSnapshot) => void;
autoSampleInterval?: number;
}
export declare function NeuromorphicLearningNetwork({ className, signals, onSnapshot, autoSampleInterval, }: NeuromorphicLearningNetworkProps): import("react/jsx-runtime").JSX.Element;
export default NeuromorphicLearningNetwork;
//# sourceMappingURL=NeuromorphicLearningNetwork.d.ts.map