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