// utils/defineStyles.ts import type { SxProps, Theme } from "@mui/material/styles"; /** * Helper to define style objects with full key/type inference as SxProps */ export function defineStyles>>( styles: T ): T { return styles; }