agentic-ui-libs
Version:
A modular, config-driven analytics library for React and Angular applications
14 lines • 510 B
TypeScript
import React from 'react';
import { DashboardConfig, DashboardEventHandlers, AppConfig, DateRange } from '@/types';
interface DashboardProps {
config: DashboardConfig;
appConfig?: AppConfig;
className?: string;
eventHandlers?: DashboardEventHandlers;
onExport?: () => void;
onDraftChange?: (value: string) => void;
onTimeRangeChange?: (value: string | DateRange) => void;
}
export declare const Dashboard: React.FC<DashboardProps>;
export {};
//# sourceMappingURL=Dashboard.d.ts.map