import { TextStyle } from 'react-native';
import { Typography } from '../../../../../theme/typography';
type TypographyType = keyof Typography;
type TypographySize = 'large' | 'medium' | 'small';
declare const getStyleByTypography: (type?: TypographyType | string, size?: TypographySize | string, color?: string) => {
    typography: TextStyle;
};
export default getStyleByTypography;
