import * as react from 'react'; import { AlertVariant, AlertAppearance } from '../../types.js'; interface AlertContextState { variant: AlertVariant; appearance: AlertAppearance; } declare const defaultAlertContext: AlertContextState; declare const AlertContext: react.Context; export { AlertContext, type AlertContextState, defaultAlertContext };