import { SxProps, Theme } from '@mui/material'; import { ReactNode } from 'react'; export interface WidgetSubHeaderProps { /** Content for the left slot */ slotLeft?: ReactNode; /** Content for the right slot*/ slotRight?: ReactNode; /** Custom styles */ sx?: SxProps; }