{
props: P &
diff --git a/packages/mui-system/test/typescript/moduleAugmentation/boxCustomSystemProps.spec.tsx b/packages/mui-system/test/typescript/moduleAugmentation/boxCustomSystemProps.spec.tsx
new file mode 100644
index 00000000000000..08e512e7b88d2a
--- /dev/null
+++ b/packages/mui-system/test/typescript/moduleAugmentation/boxCustomSystemProps.spec.tsx
@@ -0,0 +1,22 @@
+import * as React from 'react';
+import { Box } from '@mui/system';
+
+declare module '@mui/system' {
+ interface CustomSystemProps {
+ customProp?: 'customValue';
+ }
+}
+
+function CustomSystemPropsTest() {
+