Found that it works perfectly declaring a module:
declare module '@mui/material/styles' {
interface TypeText {
light?: string;
}
interface Palette {
text: TypeText;
}
interface PaletteOptions {
text?: Partial<TypeText>;
}
}