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