import { Animated, View } from 'react-native'; type ThemeIntent = 'primary' | 'success' | 'warning' | 'danger' | 'info' | 'archived' | 'neutral'; type ThemePadding = 'narrowContent' | 'wideContent'; type ThemeSize = 'medium' | 'small'; type ThemeVariant = 'filled' | 'outlined'; declare const StyledView: import("@emotion/native").StyledComponent> & { theme?: import("@emotion/react").Theme; as?: React.ElementType; } & { themeIntent: ThemeIntent; themePadding: ThemePadding; themeSize: ThemeSize; themeVariant: ThemeVariant; themeIsStringBadge: boolean; }, {}, {}>; declare const StyledText: import("@emotion/native").StyledComponent; declare const StyledStatus: import("@emotion/native").StyledComponent> & { theme?: import("@emotion/react").Theme; as?: React.ElementType; } & { themeIntent: ThemeIntent; }, {}, {}>; declare const StyledCount: import("@emotion/native").StyledComponent | undefined; }>; declare const StyledCountText: import("@emotion/native").StyledComponent; declare const StyledIcon: import("@emotion/native").StyledComponent; export { StyledCountText, StyledView, StyledText, StyledStatus, StyledIcon, StyledCount, };