import React from 'react'; import type { AccessibilityProps, StyleProp, ViewStyle } from 'react-native'; import type { IconName } from '..'; type GradientIconSize = 'xxxsmall' | 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; interface GradientIconProps extends AccessibilityProps { name: IconName; themeSize: GradientIconSize; testID?: string; style?: StyleProp; } declare const GradientIcon: ({ name, themeSize, testID, style, ...accessibilityProps }: GradientIconProps) => React.JSX.Element; export default GradientIcon;