/** * Primary UI component for Dashboard Widgets */ import { CardProps } from '@heroui/react'; export interface WidgetProps { children: React.ReactNode; header?: { startContent?: React.ReactNode; endContent?: React.ReactNode; }; title?: string; size?: 'sm' | 'md' | 'lg'; variant?: CardProps['variant']; } export declare const Widget: React.FC;