export declare class SallaAlert {
    /** Message text */
    message: string;
    /** Variant theme */
    variant: 'info' | 'success' | 'warning' | 'error';
    /** Icon type (defaults to variant) */
    icon?: 'info' | 'success' | 'warning' | 'error' | 'none';
    private renderIcon;
    render(): any;
}
