* Success!
* Your changes have been saved.
*
* ```
*/
declare class PlusAlert$1 extends Tailwind$1 {
/**
* Determines the visual style of the alert
* - filled: Solid background color
* - outlined: Transparent background with border
* - dashed: Transparent background with dashed border
* @default 'filled'
* @type {'filled' | 'outlined' | 'dashed'}
*/
kind: 'filled' | 'outlined' | 'dashed';
/**
* The size of the alert
*
* @type {'sm' | 'md' | 'lg'}
* @default 'md'
*/
size: 'sm' | 'md' | 'lg';
/**
* Sets the status/color variant of the alert
* - default: Neutral color scheme
* - primary: Brand color scheme
* - success: Green color scheme
* - warning: Yellow color scheme
* - danger: Red color scheme
* - info: Blue color scheme
* @default 'default'
*/
status: 'default' | 'success' | 'warning' | 'danger' | 'info';
/**
* When true, the alert will be displayed with an inverted color scheme
* @default false
* @type {boolean}
*/
invert: boolean;
/**
* When true, the alert will be displayed with a dismissible close button
* @default true
* @type {boolean}
*/
dismissible: boolean;
/**
* The message of the alert
* @default ''
* @type {string}
* @slot message
*/
message: string;
/**
* The description of the alert
* @default ''
* @type {string}
* @slot description
*/
description: string;
/**
* The status icon of the alert
* @default ''
* @type {string}
* @slot prefix
*/
statusIcon?: string;
/**
* The dismiss icon of the alert
* @default ''
* @type {string}
* @slot dismiss
*/
dismissIcon?: string;
/**
* When true, the alert will be displayed with a full width
* @default false
* @type {boolean}
*/
fullWidth: boolean;
/**
* When true, the alert will be hidden
* @default false
* @type {boolean}
*/
hiddenAlert: boolean;
/**
* Handles the dismiss action of the alert
* @private
*/
private handleDismiss;
render(): lit_html.TemplateResult<1>;
static styles: lit.CSSResult[];
}
/**
* @tag plus-radio
* @summary Radio button component that allows single selection from a group of options.
*
* @slot - The radio button label content
*
* @csspart radio - The component's radio input element
*
* @event plus-change - Emitted when the radio button's checked state changes
*
* @example
* ```html
*