import { ReactNode } from 'react'; import './Alert.css'; export interface AlertProps { type?: 'success' | 'info' | 'warning' | 'error'; children?: ReactNode; } export declare function Alert({ type, children }: AlertProps): import("react/jsx-runtime").JSX.Element;