import { AlertVariant, AlertAppearance } from '../types.js'; import { StyleProp, ViewStyle } from 'react-native'; import { Theme } from '@vega-ui/theme'; type AllAlertVariants = `${AlertVariant}${Capitalize}`; type AlertStyles = Record>; declare const getAlertStyles: (theme?: Theme) => AlertStyles; export { getAlertStyles };