import "./Alert.css"; export interface AlertProps { text: string; variant?: 'default' | 'warning' | 'error' | 'info'; icon?: React.ReactNode; button?: { content: React.ReactNode; onClick: () => void; }; content?: React.ReactNode; initialExpanded?: boolean; className?: string; qa?: string; } export declare function Alert({ text, icon, button, content, initialExpanded, variant, className, qa, }: AlertProps): import("react/jsx-runtime").JSX.Element;