import { ElementType, ReactNode } from 'react'; import { WidgetState } from '../stores/types'; export interface SkeletonLoaderProps { id: WidgetState['id']; Skeleton: ElementType | null; children: ReactNode; }