import * as React from "react"; import { StyleProp, TextStyle } from "react-native"; import { DefaultTheme } from "styled-components"; import Text from "./Text"; declare type Props = React.ComponentProps & { alpha: number; family: "regular" | "medium" | "light" | "thin"; style?: StyleProp; theme?: DefaultTheme; }; declare const StyledText: ({ alpha, family, style, ...rest }: Props) => JSX.Element; export default StyledText;