import './index.scss'; interface textStyle { fontSize?: string; fontWeight?: '200' | '400' | '600'; color?: string; backgroundColor?: string; widthHeightVisible?: boolean; width?: string; height?: string; lineHeight?: string; textAlign?: 'left' | 'center' | 'right'; } type dynamicType = 'appName'; export interface TextProps { text: string; style: textStyle; styles: textStyle; dynamic: boolean; dynamicType: dynamicType; inline: boolean; } declare const _default: any; export default _default;