when adding the following prop values for styleConfig in the Stepper component:
tyleConfig={{ size: 50 }}
I get the following TS error
type '{ size: number; }' is missing the following properties from type 'StepStyleDTO': activeBgColor, activeTextColor, completedBgColor, completedTextColor, and 6 more.ts(2740)
StepperTypes.d.ts(9, 5): The expected type comes from property 'styleConfig' which is declared here on type 'IntrinsicAttributes & StepperProps'

This is different from the example as it seems in the example the default key/values for the prop is read ?