import type { TextStyle } from 'react-native'; import type { BorderProps, ColorProps, FlexboxProps, LayoutProps, PositionProps, SpaceProps, TypographyProps, } from 'styled-system'; import type { customBorderProps, customBackgroundProps, customOutlineProps, customLayoutProps, customExtraProps, customShadowProps, customTypographyProps, customPositionProps, } from '../../../utils/customProps'; export type IHeadingProps = ColorProps & SpaceProps & LayoutProps & FlexboxProps & TypographyProps & PositionProps & customPositionProps & customBorderProps & customExtraProps & customOutlineProps & customShadowProps & customLayoutProps & customBackgroundProps & customTypographyProps & BorderProps & { style?: TextStyle; children?: string | JSX.Element[] | JSX.Element; isTruncated?: any; };