import { WithCustomStyles } from '../../@types'; export interface NativeAlertProps { className?: string; id?: string; variant?: 'info' | 'warning' | 'error' | 'success'; title: string; isVisible: boolean; onClose: () => void; } export declare type AlertProps = WithCustomStyles;