/** * custom addition parser for text, * it preserve css properties relative to text decoration and format like: * @example * `textTransform` * `textDecoration` * `textDecorationLine` * `textDecorationStyle` * `textDecorationColor`: referred to the theme colors */ export declare function text({ theme, textTransform, textDecoration, textDecorationLine, textDecorationStyle, textDecorationColor, }: any): { textDecorationColor?: any; textDecorationStyle?: any; textDecorationLine?: any; textDecoration?: any; textTransform?: any; };