import { type ElementType } from 'react'; import type { ChildrenProps, EmotionColorNamesType, StyleProps, TransferProps } from './shared'; export interface AriaAlertElementTypeProps { elementType?: T; } export interface AlertProps extends ChildrenProps, StyleProps, TransferProps { } export interface SpiritAlertProps extends AriaAlertElementTypeProps, AlertProps { color?: EmotionColorNamesType | C; iconName?: string; isCentered?: boolean; }