export type Kind = 'info' | 'positive' | 'negative' | 'warning'; export type KindMap = Record; export interface AlertProps { /** * Set this to change alert kind * @default info */ kind?: 'info' | 'positive' | 'negative' | 'warning'; }