import { TextStyle } from 'react-native'; import { ThemeType } from '../utils/themeTypes'; import { textColors, textTransForm, textAlignForm, textType } from './Text'; type TextHelperArgsType = { color: textColors; flex?: number; bold?: boolean; italic?: boolean; underline?: boolean; transform?: textTransForm; align?: textAlignForm; text?: string; type?: textType; sizeStr: string; }; export declare const textHelper: ({ color, flex, bold, italic, underline, transform, type, align, sizeStr, }: TextHelperArgsType) => TextStyle[]; export declare const textColorHelper: (theme: ThemeType, color?: textColors) => string; export {};