import { View, Image } from 'react-native'; import type { TextProps } from '../Typography/Text'; type ThemeSize = 'small' | 'medium' | 'large' | 'xlarge' | 'xxlarge' | 'xxxlarge' | 'xxxxlarge' | 'xxxxxlarge'; type ThemeIntent = 'neutral' | 'primary' | 'info' | 'danger' | 'success' | 'warning'; declare const StyledWrapper: import("@emotion/native").StyledComponent & { theme?: import("@emotion/react").Theme; as?: React.ElementType; } & { themeSize: ThemeSize; themeIntent: ThemeIntent; }, {}, {}>; declare const StyledTextWrapper: import("@emotion/native").StyledComponent | undefined; }>; declare const StyledText: import("@emotion/native").StyledComponent; declare const StyledImage: import("@emotion/native").StyledComponent | undefined; }>; export { StyledWrapper, StyledImage, StyledTextWrapper, StyledText };