import React from "react"; import { TextProps, TextStyle, ViewProps } from "react-native"; import { ThemeName } from "../constants/Colors"; type Props = TextProps & { text?: string; speed?: number; onComplete?: () => void; themeScheme?: 'light' | 'dark'; variantColor?: 'default' | 'primary' | 'secondary' | ThemeName; variant?: 'H1' | 'H2' | 'H3' | 'H4' | 'H5' | 'H6' | 'subtitle1' | 'subtitle2' | 'body1' | 'body2' | 'button' | 'caption' | 'overline'; bold?: TextStyle['fontWeight']; size?: TextStyle['fontSize']; center?: boolean; containerStyle?: ViewProps; }; declare const TextLoader: ({ text, speed, onComplete, containerStyle, variantColor, variant, center, themeScheme, bold, size, style, ...otherProps }: Props) => React.JSX.Element; export default TextLoader; //# sourceMappingURL=TextLoader.d.ts.map