import React from 'react'; export type AlertVariant = 'info' | 'success' | 'warning' | 'danger'; export type AlertRadius = 'none' | 'sm' | 'md' | 'lg'; export interface AlertContextType { variant: AlertVariant; radius?: AlertRadius; banner?: boolean; closable?: boolean; onClose?: () => void; } export declare const useAlertContext: () => AlertContextType; export interface AlertProviderProps { value: AlertContextType; children: React.ReactNode; } export declare const AlertProvider: React.FC; //# sourceMappingURL=AlertContext.d.ts.map