import React, { Dispatch, ReactNode, SetStateAction } from 'react'; export interface AlertProps { variant?: 'error' | 'warning' | 'warning-black' | 'success'; title?: string; description: ReactNode; onAlert?: Dispatch>; buttonName?: string; icon?: ReactNode; border?: 'orange' | 'green'; titleProp?: boolean; cy?: { wrapper?: string; title?: string; container?: string; description?: string; button?: string; }; } declare const Alert: React.FC; export default Alert;