Copyimport { extendTheme } from 'native-base';const customTheme = extendTheme({space: {'space-2': '29px',},components: {Button: {variants: {brand: {p: '10',bg: 'brand.500',},},},},});// 2. Get the type of the CustomThemetype CustomThemeType = typeof customTheme;// 3. Extend the internal NativeBase Themedeclare module 'native-base' {interface ICustomTheme extends CustomThemeType {}}