1 | import * as React from 'react';
|
2 | import { StyleProp, TextStyle } from 'react-native';
|
3 | import type { ThemeProp } from 'src/types';
|
4 | import Text from './Text';
|
5 | declare type Props = React.ComponentProps<typeof Text> & {
|
6 | alpha?: number;
|
7 | family: 'regular' | 'medium' | 'light' | 'thin';
|
8 | style?: StyleProp<TextStyle>;
|
9 | theme?: ThemeProp;
|
10 | };
|
11 | declare const StyledText: ({ alpha, family, style, theme: themeOverrides, ...rest }: Props) => React.JSX.Element;
|
12 | export default StyledText;
|
13 |
|
\ | No newline at end of file |